From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 24002 invoked by alias); 10 Jan 2005 17:27:07 -0000 Mailing-List: contact libc-hacker-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-hacker-owner@sources.redhat.com Received: (qmail 23970 invoked from network); 10 Jan 2005 17:27:07 -0000 Received: from unknown (HELO sccrmhc12.comcast.net) (204.127.202.56) by sourceware.org with SMTP; 10 Jan 2005 17:27:07 -0000 Received: from lucon.org ([24.6.212.230]) by comcast.net (sccrmhc12) with ESMTP id <2005011017270601200ovltte>; Mon, 10 Jan 2005 17:27:06 +0000 Received: by lucon.org (Postfix, from userid 1000) id 0BC37640F4; Mon, 10 Jan 2005 09:27:05 -0800 (PST) Date: Mon, 10 Jan 2005 17:27:00 -0000 From: "H. J. Lu" To: Andreas Jaeger Cc: Glibc hackers , Richard Henderson , binutils@sources.redhat.com Subject: Re: Aliases ... Message-ID: <20050110172704.GA2433@lucon.org> References: <20050110171407.GA1943@lucon.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20050110171407.GA1943@lucon.org> User-Agent: Mutt/1.4.1i X-SW-Source: 2005-01/txt/msg00020.txt.bz2 On Mon, Jan 10, 2005 at 09:14:07AM -0800, H. J. Lu wrote: > On Sun, Jan 09, 2005 at 10:00:25PM +0100, Andreas Jaeger wrote: > > > > From: http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19346 > > > > > > Description: [reply] > > Last confirmed: 2005-01-09 15:50 > > Opened: 2005-01-09 10:11 > > > > With current GCC CVS I get lots of warnings when compiling glibc > > about aliases to undefined symbols: > > > > aj@gromit:~/tmp> /opt/gcc/4.0-devel/bin/gcc -O2 -c test.i > > test.i:2: warning: ?__libc_errno? aliased to undefined symbol ?errno? > > aj@gromit:~/tmp> nm test.o > > 0000000000000004 C errno > > > > See > > http://sources.redhat.com/ml/libc-alpha/2004-01/msg00232.html > > Should I apply > > http://sources.redhat.com/ml/binutils/2004-02/msg00066.html > > I got > > [hjl@gnu-10 tmp]$ /usr/gcc-4.0/bin/gcc -O2 x.c > x.c:2: warning: \uffff\uffff\uffff__libc_errno\uffff\uffff\uffff > aliased to undefined symbol \uffff\uffff\ufffferrno\uffff\uffff\uffff > /tmp/cczKnuV0.s: Assembler messages: > /tmp/cczKnuV0.s:6: Error: `__libc_errno' can't be equated to common > symbol I checked in my gas patch. The new assembler won't allow it anymore. H.J.