From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 6020 invoked by alias); 3 Feb 2003 05:02:48 -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 6003 invoked from network); 3 Feb 2003 05:02:48 -0000 Received: from unknown (HELO hiauly1.hia.nrc.ca) (132.246.100.193) by 172.16.49.205 with SMTP; 3 Feb 2003 05:02:48 -0000 Received: from hiauly1.hia.nrc.ca (localhost [127.0.0.1]) by hiauly1.hia.nrc.ca (8.12.0.Beta16/8.12.0.Beta16) with ESMTP id h1352jot026915; Mon, 3 Feb 2003 00:02:46 -0500 (EST) Received: (from dave@localhost) by hiauly1.hia.nrc.ca (8.12.0.Beta16/8.12.0.Beta16) id h1352iTK026914; Mon, 3 Feb 2003 00:02:44 -0500 (EST) Message-Id: <200302030502.h1352iTK026914@hiauly1.hia.nrc.ca> Subject: Re: hppa-linux regressions and 3.2.2 release To: dave@hiauly1.hia.nrc.ca (John David Anglin) Date: Mon, 03 Feb 2003 05:02:00 -0000 From: "John David Anglin" Cc: gdr@integrable-solutions.net, ebotcazou@libertysurf.fr, randolph@tausq.org, gcc@gcc.gnu.org, gcc-patches@gcc.gnu.org In-Reply-To: from "John David Anglin" at Feb 2, 2003 09:38:19 pm MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-SW-Source: 2003-02/txt/msg00105.txt.bz2 > I now have tests running on hppa2.0w-hp-hpux11.11, hppa64-hp-hpux11.00 > and hppa-unknown-linux-gnu including the patch set for the other PR from > Franz Sirl. I will post the results as soon as available. The hppa2.0w-hp-hpux11.11 are complete and identical to the previous run without Franz's patch: . I had to restart the hppa64-hp-hpux11.00 run. I used the HP linker and it generates a warning on each link. This totally messes up the testsuite results. I would like to apply the following patch from Steve Ellcey to correct the problem. It has been on the main and 3.3 since early last October. The comment describes what it does. It only affects hppa64-hp-hpux11* and doesn't affect code generation. As you are doing preleases, I will wait for your OK. Dave -- J. David Anglin dave.anglin@nrc-cnrc.gc.ca National Research Council of Canada (613) 990-0752 (FAX: 952-6605) 2003-02-02 Steve Ellcey * config/pa/pa64-hpux.h (INIT_ENVIRONMENT): New. Index: config/pa/pa64-hpux.h =================================================================== RCS file: /cvsroot/gcc/gcc/gcc/config/pa/pa64-hpux.h,v retrieving revision 1.9 diff -u -3 -p -r1.9 pa64-hpux.h --- config/pa/pa64-hpux.h 21 Jan 2002 21:22:19 -0000 1.9 +++ config/pa/pa64-hpux.h 3 Feb 2003 04:38:07 -0000 @@ -232,3 +232,8 @@ do { \ #ifndef ASM_DECLARE_RESULT #define ASM_DECLARE_RESULT(FILE, RESULT) #endif + +/* If using HP ld do not call pxdb. Use size as a program that does nothing + and returns 0. /bin/true cannot be used because it is a script without + an interpreter. */ +#define INIT_ENVIRONMENT "LD_PXDB=/usr/ccs/bin/size"