From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 9653 invoked by alias); 27 May 2004 01:01:04 -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 9635 invoked from network); 27 May 2004 01:01:04 -0000 Received: from unknown (HELO rwcrmhc13.comcast.net) (204.127.198.39) by sourceware.org with SMTP; 27 May 2004 01:01:04 -0000 Received: from lucon.org ([24.6.43.109]) by comcast.net (rwcrmhc13) with ESMTP id <20040527010103015006s7a4e>; Thu, 27 May 2004 01:01:03 +0000 Received: by lucon.org (Postfix, from userid 1000) id A923B64CFF; Wed, 26 May 2004 18:01:02 -0700 (PDT) Date: Thu, 27 May 2004 09:26:00 -0000 From: "H. J. Lu" To: Ulrich Drepper Cc: Jakub Jelinek , Glibc hackers Subject: Re: [PATCH] changes for GCC 3.2+ and 3.4+ Message-ID: <20040527010102.GA8045@lucon.org> References: <20040526124659.GT5191@sunsite.ms.mff.cuni.cz> <40B4D342.3060301@redhat.com> <20040526203623.GA3779@lucon.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040526203623.GA3779@lucon.org> User-Agent: Mutt/1.4.1i X-SW-Source: 2004-05/txt/msg00047.txt.bz2 On Wed, May 26, 2004 at 01:36:23PM -0700, H. J. Lu wrote: > On Wed, May 26, 2004 at 10:26:26AM -0700, Ulrich Drepper wrote: > > Applied. > > I think the patch is incomplete. 2004-05-26 Jakub Jelinek * include/string.h (mempcpy, stpcpy): Add libc_hidden_builtin_proto. Don't you need to add the corresponding libc_hidden_builtin_def for mempcpy and stpcpy? ld.so failed to build with gcc 3.4 on ia64 and i686 due to missing mempcpy and stpcpy. H.J.