From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 23835 invoked by alias); 26 Apr 2002 18:28:02 -0000 Mailing-List: contact gcc-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Archive: List-Post: List-Help: Sender: gcc-owner@gcc.gnu.org Received: (qmail 23810 invoked from network); 26 Apr 2002 18:28:00 -0000 Received: from unknown (HELO cygnus.com) (205.180.83.203) by sources.redhat.com with SMTP; 26 Apr 2002 18:28:00 -0000 Received: from porcupine.cygnus.com (remus.sfbay.redhat.com [172.16.27.252]) by runyon.cygnus.com (8.8.7-cygnus/8.8.7) with ESMTP id LAA28640 for ; Fri, 26 Apr 2002 11:27:56 -0700 (PDT) Received: from porcupine.cygnus.com (IDENT:LweFS0wpON5X+vkqPaJDekPvZEwM2WEx@localhost.localdomain [127.0.0.1]) by porcupine.cygnus.com (8.12.2/8.12.2) with ESMTP id g3QIV7v9013160; Fri, 26 Apr 2002 12:31:07 -0600 Received: from porcupine.cygnus.com (law@localhost) by porcupine.cygnus.com (8.12.2/8.12.2/Submit) with ESMTP id g3QIV6Ns013155; Fri, 26 Apr 2002 12:31:06 -0600 To: joel.sherrill@OARcorp.com cc: gcc@gcc.gnu.org, newlib@sources.redhat.com Subject: Re: FIX was [Fwd: gcc 3.1 hppa failures] Reply-To: law@redhat.com From: law@redhat.com In-reply-to: Your message of Fri, 26 Apr 2002 08:24:20 CDT. <3CC95504.19F3ACBA@OARcorp.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Fri, 26 Apr 2002 11:46:00 -0000 Message-ID: <13154.1019845865@porcupine.cygnus.com> X-SW-Source: 2002-04/txt/msg01454.txt.bz2 In message <3CC95504.19F3ACBA@OARcorp.com>, Joel Sherrill writes: > This is a multi-part message in MIME format. > --------------0354A57B47FD6107ACFD7FBF > Content-Type: text/plain; charset=us-ascii > Content-Transfer-Encoding: 7bit > > > With the patch in the attached email, I can build much further. > At this point, the problems are newlib and libgloss. newlib's > libc/machine/pa assembly code uses subspa directives and > libgloss has a Makefile problem where it reports not having > a target. > > My PA assembly language is WAY too rusty to attempt to fix > newlib at this point. It ought to be pretty simple. .space $text$ .subspace $code$ Translates to: .text .space $text$ .subspace $lit$ Translates to: .rodata .space $private$ .subspa $data Translates to: .data .space $private$ .subspa $bss$ Translates to: .bss > So please review and commit the > attached patch to the 3.1 and main trunks. This will close > PR6455. It looks good to me. jeff