This is the mail archive of the
java-patches@gcc.gnu.org
mailing list for the Java project.
Re: Patch: enable interpreter on PPC64
- From: Jakub Jelinek <jakub at redhat dot com>
- To: Tom Tromey <tromey at redhat dot com>
- Cc: GCC libjava patches <java-patches at gcc dot gnu dot org>
- Date: Fri, 2 May 2003 13:18:21 -0400
- Subject: Re: Patch: enable interpreter on PPC64
- References: <87y91ptgxu.fsf@fleche.redhat.com>
- Reply-to: Jakub Jelinek <jakub at redhat dot com>
On Fri, May 02, 2003 at 11:08:13AM -0600, Tom Tromey wrote:
> Jakub, are we ready for this patch?
I think so (am using similar change on gcc-3_2-rhl8-branch), but
there is still the jc1 bug I told you about where DECL_EXTERNAL is
not set on external methods which results in lots of ppc64 libjava
make check failures.
> Index: libjava/ChangeLog
> from Tom Tromey <tromey@redhat.com>
>
> * configure.host <powerpc64*-*>: Set with_libffi_default and
> libgcj_interpreter to "yes".
>
> Index: libjava/configure.host
> ===================================================================
> RCS file: /cvs/gcc/gcc/libjava/configure.host,v
> retrieving revision 1.49
> diff -u -r1.49 configure.host
> --- libjava/configure.host 15 Apr 2003 09:52:42 -0000 1.49
> +++ libjava/configure.host 2 May 2003 17:13:59 -0000
> @@ -114,8 +114,8 @@
> ;;
> powerpc64*-*)
> # libffi not ported.
> - with_libffi_default=no
> - libgcj_interpreter=no
> + with_libffi_default=yes
> + libgcj_interpreter=yes
> libgcj_flags="${libgcj_flags} -mminimal-toc"
> # this may not be correct
> sysdeps_dir=powerpc
Jakub