From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 23149 invoked by alias); 25 May 2006 13:57:07 -0000 Received: (qmail 23129 invoked by uid 22791); 25 May 2006 13:57:07 -0000 X-Spam-Check-By: sourceware.org Received: from dessent.net (HELO dessent.net) (69.60.119.225) by sourceware.org (qpsmtpd/0.31) with ESMTP; Thu, 25 May 2006 13:57:05 +0000 Received: from localhost ([127.0.0.1] helo=dessent.net) by dessent.net with esmtp (Exim 4.61) (envelope-from ) id 1FjGKk-0004ti-OJ for binutils@sourceware.org; Thu, 25 May 2006 13:57:03 +0000 Message-ID: <4475B7AD.46E1073E@dessent.net> Date: Thu, 25 May 2006 17:22:00 -0000 From: Brian Dessent Reply-To: binutils@sourceware.org X-Mailer: Mozilla 4.79 [en] (Windows NT 5.0; U) MIME-Version: 1.0 To: binutils@sourceware.org Subject: changes in 'intl' Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-IsSubscribed: yes Mailing-List: contact binutils-help@sourceware.org; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: binutils-owner@sourceware.org X-SW-Source: 2006-05/txt/msg00461.txt.bz2 I'm having difficulty building current CVS binutils for native cygwin (i686-pc-cygwin). If I configure without options, nothing is built in intl/ and I get the following error trying to link in binutils/ /bin/bash ./libtool --mode=link gcc -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Werror -g -O2 -march=athlon-xp -o size.exe size.o bucomm.o version.o filemode.o ../bfd/libbfd.la ../libiberty/libiberty.a ./../intl/libintl.a mkdir .libs gcc -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Werror -g -O2 -march=athlon-xp -o size.exe size.o bucomm.o version.o filemode.o ../bfd/.libs/libbfd.a ../libiberty/libiberty.a ./../intl/libintl.a gcc: ./../intl/libintl.a: No such file or directory make[4]: *** [size.exe] Error 1 If I configure with --with-included-gettext (or do a "make -C intl all-yes") then libintl.a gets built but it does not work: /bin/bash ./libtool --mode=link gcc -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Werror -g -O2 -march=athlon-xp -o size.exe size.o bucomm.o version.o filemode.o ../bfd/libbfd.la ../libiberty/libiberty.a ./../intl/libintl.a mkdir .libs gcc -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Werror -g -O2 -march=athlon-xp -o size.exe size.o bucomm.o version.o filemode.o ../bfd/.libs/libbfd.a ../libiberty/libiberty.a ./../intl/libintl.a ./../intl/libintl.a(dcigettext.o): In function `_nl_find_msg': /usr/src/sourceware/intl/dcigettext.c:940: undefined reference to `_libiconv' ./../intl/libintl.a(loadmsgcat.o): In function `_nl_init_domain_conv': /usr/src/sourceware/intl/loadmsgcat.c:869: undefined reference to `_libiconv_open' ./../intl/libintl.a(loadmsgcat.o): In function `_nl_free_domain_conv': /usr/src/sourceware/intl/loadmsgcat.c:896: undefined reference to `_libiconv_close' ./../intl/libintl.a(relocatable.o): In function `libintl_set_relocation_prefix': /usr/src/sourceware/intl/relocatable.c:148: undefined reference to `_libiconv_set_relocation_prefix' collect2: ld returned 1 exit status make[4]: *** [size.exe] Error 1 I think the 'src' intl was recently synched from the gcc repo, could this be the cause, or did that happen the other way around? Brian