From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 23668 invoked by alias); 19 Mar 2003 09:36:20 -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 23533 invoked from network); 19 Mar 2003 09:36:19 -0000 Received: from unknown (HELO sunsite.mff.cuni.cz) (195.113.19.66) by sources.redhat.com with SMTP; 19 Mar 2003 09:36:19 -0000 Received: (from jakub@localhost) by sunsite.mff.cuni.cz (8.11.6/8.11.6) id h2J9aIn07357; Wed, 19 Mar 2003 10:36:18 +0100 Date: Wed, 19 Mar 2003 09:44:00 -0000 From: Jakub Jelinek To: Andreas Jaeger Cc: GNU libc hacker Subject: Re: make check failure on x86-64 with abilist Message-ID: <20030319103618.H1717@sunsite.ms.mff.cuni.cz> Reply-To: Jakub Jelinek References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: ; from aj@suse.de on Wed, Mar 19, 2003 at 10:26:30AM +0100 X-SW-Source: 2003-03/txt/msg00038.txt.bz2 On Wed, Mar 19, 2003 at 10:26:30AM +0100, Andreas Jaeger wrote: > > Roland, > > I get this failure during make check on Linux/x86-64 now: > --- - 2003-03-19 10:15:18.000000000 +0100 > +++ /usr/src/aj/build/libc/main/libc.symlist 2003-03-19 10:15:18.000000000 +0100 > @@ -427 +427 @@ GLIBC_2.2.5 > - _nl_default_dirname D 0x12 > + _nl_default_dirname D 0x26 > make[2]: *** [check-abi-libc] Error 1 > > What's the best way to fix this? Will update-abi handle this? First of all, it is unfortunate a string as char array is exported. If a binary accesses _nl_default_dirname, it will have a copy reloc for exactly this size. 0x12 is sizeof "/usr/share/locale" which is what the ABI should specify. Jakub