public inbox for gcc@gcc.gnu.org
 help / color / mirror / Atom feed
* 3.1: libjava on sparcv9 not quite right
@ 2002-05-04  7:16 Brad Lucier
  2002-05-04 12:53 ` Alexandre Oliva
  0 siblings, 1 reply; 6+ messages in thread
From: Brad Lucier @ 2002-05-04  7:16 UTC (permalink / raw)
  To: gcc; +Cc: Brad Lucier

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?

Brad

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: 3.1: libjava on sparcv9 not quite right
  2002-05-04  7:16 3.1: libjava on sparcv9 not quite right Brad Lucier
@ 2002-05-04 12:53 ` Alexandre Oliva
  2002-05-04 21:25   ` Brad Lucier
  2002-05-05 10:34   ` Mark Mitchell
  0 siblings, 2 replies; 6+ messages in thread
From: Alexandre Oliva @ 2002-05-04 12:53 UTC (permalink / raw)
  To: Brad Lucier, mark; +Cc: gcc, gcc-patches

[-- Attachment #1: Type: text/plain, Size: 580 bytes --]

On May  4, 2002, Brad Lucier <lucier@math.purdue.edu> 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?


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: libjava-sparcv9.patch --]
[-- Type: text/x-patch, Size: 760 bytes --]

Index: ChangeLog
from  Alexandre Oliva  <aoliva@redhat.com>

	* 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}"

[-- Attachment #3: Type: text/plain, Size: 289 bytes --]


-- 
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

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: 3.1: libjava on sparcv9 not quite right
  2002-05-04 12:53 ` Alexandre Oliva
@ 2002-05-04 21:25   ` Brad Lucier
  2002-05-05 10:34   ` Mark Mitchell
  1 sibling, 0 replies; 6+ messages in thread
From: Brad Lucier @ 2002-05-04 21:25 UTC (permalink / raw)
  To: Alexandre Oliva; +Cc: Brad Lucier, mark, gcc, gcc-patches

> > 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?

Yes, the configure seemed to be fine, bootstrap and make check are
proceeding, but I don't expect there to be any problems.  Thanks.

Brad

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: 3.1: libjava on sparcv9 not quite right
  2002-05-04 12:53 ` Alexandre Oliva
  2002-05-04 21:25   ` Brad Lucier
@ 2002-05-05 10:34   ` Mark Mitchell
  2002-05-05 11:22     ` Brad Lucier
  2002-05-05 12:01     ` Alexandre Oliva
  1 sibling, 2 replies; 6+ messages in thread
From: Mark Mitchell @ 2002-05-05 10:34 UTC (permalink / raw)
  To: Alexandre Oliva, Brad Lucier; +Cc: gcc, gcc-patches

> This patch should fix it.  Mark, ok to install?

As long as you have evidence that it builds on those targets, yes.

--
Mark Mitchell                   mark@codesourcery.com
CodeSourcery, LLC               http://www.codesourcery.com

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: 3.1: libjava on sparcv9 not quite right
  2002-05-05 10:34   ` Mark Mitchell
@ 2002-05-05 11:22     ` Brad Lucier
  2002-05-05 12:01     ` Alexandre Oliva
  1 sibling, 0 replies; 6+ messages in thread
From: Brad Lucier @ 2002-05-05 11:22 UTC (permalink / raw)
  To: Mark Mitchell; +Cc: Alexandre Oliva, Brad Lucier, gcc, gcc-patches

> > This patch should fix it.  Mark, ok to install?
> 
> As long as you have evidence that it builds on those targets, yes.

It bootstraps and regtests with no regressions on sparcv9-sun-solaris2.8.

Brad

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: 3.1: libjava on sparcv9 not quite right
  2002-05-05 10:34   ` Mark Mitchell
  2002-05-05 11:22     ` Brad Lucier
@ 2002-05-05 12:01     ` Alexandre Oliva
  1 sibling, 0 replies; 6+ messages in thread
From: Alexandre Oliva @ 2002-05-05 12:01 UTC (permalink / raw)
  To: Mark Mitchell; +Cc: Brad Lucier, gcc, gcc-patches

On May  5, 2002, Mark Mitchell <mark@codesourcery.com> wrote:

>> This patch should fix it.  Mark, ok to install?
> As long as you have evidence that it builds on those targets, yes.

Given Brad's confirmation (I had not gone through a complete bootstrap
cycle), I've checked it in.

-- 
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

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2002-05-05 19:01 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2002-05-04  7:16 3.1: libjava on sparcv9 not quite right Brad Lucier
2002-05-04 12:53 ` Alexandre Oliva
2002-05-04 21:25   ` Brad Lucier
2002-05-05 10:34   ` Mark Mitchell
2002-05-05 11:22     ` Brad Lucier
2002-05-05 12:01     ` Alexandre Oliva

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).