From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 23778 invoked by alias); 17 Apr 2003 22:27:58 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Received: (qmail 23769 invoked from network); 17 Apr 2003 22:27:57 -0000 Received: from unknown (HELO mta06ps.bigpond.com) (144.135.25.138) by sources.redhat.com with SMTP; 17 Apr 2003 22:27:57 -0000 Received: from bubble.local ([144.135.25.72]) by mta06ps.bigpond.com (Netscape Messaging Server 4.15 mta06ps May 23 2002 23:53:28) with SMTP id HDIEEI00.EWU for ; Fri, 18 Apr 2003 08:27:54 +1000 Received: from CPE-144-136-188-60.sa.bigpond.net.au ([144.136.188.60]) by psmam02bpa.bigpond.com(MAM V3.3.2 80/4396777); 18 Apr 2003 08:27:55 Received: (qmail 26794 invoked by uid 179); 17 Apr 2003 22:27:54 -0000 Date: Thu, 17 Apr 2003 22:27:00 -0000 From: Alan Modra To: gcc-patches@gcc.gnu.org Subject: Re: unreviewed patches Message-ID: <20030417222754.GZ1189@bubble.sa.bigpond.net.au> Mail-Followup-To: gcc-patches@gcc.gnu.org References: <20030409025944.GN1189@bubble.sa.bigpond.net.au> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030409025944.GN1189@bubble.sa.bigpond.net.au> User-Agent: Mutt/1.4i X-SW-Source: 2003-04/txt/msg01379.txt.bz2 Ping. On Wed, Apr 09, 2003 at 12:29:44PM +0930, Alan Modra wrote: > Fix cse related fail of pure-1.c on powerpc64-linux > http://gcc.gnu.org/ml/gcc-patches/2003-03/msg02371.html Hey! Two lines of added code. Should be easy for someone who knows cse.c to review. > add_sysrooted_prefix > http://gcc.gnu.org/ml/gcc-patches/2003-03/msg01608.html Perhaps I should have explained why I want this one in, although it should stand alone just as a code clean-up. It's needed for the following to work, because STANDARD_STARTFILE_PREFIX is defined as $(unlibsubdir), which is ../../.. relative to $libsubdir. * config/rs6000/linux64.h (STARTFILE_PREFIX_SPEC): Use STANDARD_STARTFILE_PREFIX. Index: gcc/config/rs6000/linux64.h =================================================================== RCS file: /cvs/gcc/gcc/gcc/config/rs6000/linux64.h,v retrieving revision 1.35 diff -u -p -r1.35 linux64.h --- gcc/config/rs6000/linux64.h 18 Mar 2003 02:28:46 -0000 1.35 +++ gcc/config/rs6000/linux64.h 18 Mar 2003 07:08:58 -0000 @@ -209,7 +209,7 @@ Boston, MA 02111-1307, USA. */ %{!dynamic-linker:-dynamic-linker /lib64/ld64.so.1}}}" #ifdef NATIVE_CROSS -#define STARTFILE_PREFIX_SPEC "/usr/local/lib64/ /lib64/ /usr/lib64/" +#define STARTFILE_PREFIX_SPEC STANDARD_STARTFILE_PREFIX " /lib64/ /usr/lib64/" #endif #undef STARTFILE_LINUX_SPEC -- Alan Modra IBM OzLabs - Linux Technology Centre