From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 27413 invoked by alias); 4 May 2002 19:53:46 -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 27386 invoked from network); 4 May 2002 19:53:45 -0000 Received: from unknown (HELO potter.sfbay.redhat.com) (205.180.83.107) by sources.redhat.com with SMTP; 4 May 2002 19:53:45 -0000 Received: from livre.redhat.lsd.ic.unicamp.br (vpn3-1.sfbay.redhat.com [172.16.25.1]) by potter.sfbay.redhat.com (8.11.6/8.11.6) with ESMTP id g44Jqfv23219; Sat, 4 May 2002 12:52:42 -0700 Received: (from aoliva@localhost) by livre.redhat.lsd.ic.unicamp.br (8.11.6/8.11.6) id g44JrXF04300; Sat, 4 May 2002 16:53:33 -0300 To: Brad Lucier , mark@codesourcery.com Cc: gcc@gcc.gnu.org, gcc-patches@gcc.gnu.org Subject: Re: 3.1: libjava on sparcv9 not quite right References: <200205041415.g44EFxK17549@banach.math.purdue.edu> From: Alexandre Oliva Organization: GCC Team, Red Hat Date: Sat, 04 May 2002 12:53:00 -0000 In-Reply-To: <200205041415.g44EFxK17549@banach.math.purdue.edu> Message-ID: User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.2 MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-SW-Source: 2002-05/txt/msg00313.txt.bz2 --=-=-= Content-length: 580 On May 4, 2002, Brad Lucier wrote: > When I configure with > env CC='cc -xarch=v9 -xildoff' ../configure --prefix=/pkgs/gcc-3.1v9 sparcv9-sun-solaris2.8 > I get > *** This configuration is not supported in the following subdirectories: > target-libffi target-boehm-gc target-zlib target-libjava > (Any other directories should still work fine.) > Now, shouldn't this build all these by default, just as on > sparc-sun-solaris2.8? Especially with the fix for the Solaris > linker problem? This patch should fix it. Mark, ok to install? --=-=-= Content-Type: text/x-patch Content-Disposition: inline; filename=libjava-sparcv9.patch Content-length: 760 Index: ChangeLog from Alexandre Oliva * configure.in (noconfigdirs): Don't disable libgcj on sparc64-*-solaris* and sparcv9-*-solaris*. Index: configure.in =================================================================== RCS file: /cvs/gcc/egcs/configure.in,v retrieving revision 1.119.2.13 diff -u -p -r1.119.2.13 configure.in --- configure.in 3 May 2002 18:22:38 -0000 1.119.2.13 +++ configure.in 4 May 2002 19:51:31 -0000 @@ -1024,7 +1024,7 @@ case "${target}" in use_gnu_ld=no fi ;; - sparc-*-solaris*) + sparc-*-solaris* | sparc64-*-solaris* | sparcv9-*-solaris*) ;; v810-*-*) noconfigdirs="$noconfigdirs bfd binutils gas gcc gdb ld ${libstdcxx_version} opcodes target-libgloss ${libgcj}" --=-=-= Content-length: 289 -- Alexandre Oliva Enjoy Guarana', see http://www.ic.unicamp.br/~oliva/ Red Hat GCC Developer aoliva@{cygnus.com, redhat.com} CS PhD student at IC-Unicamp oliva@{lsd.ic.unicamp.br, gnu.org} Free Software Evangelist Professional serial bug killer --=-=-=--