This is the mail archive of the java-patches@gcc.gnu.org mailing list for the Java project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Patch: Enable the interperter for mips32.


libffi closures have been working on mips32 for quite a while now, but I never enabled the interpreter. This patch corrects that oversight.

Initial tests show that it is working. Currently running testsuite on mipsel-linux.

OK to commit if no regressions?

2006-07-19 David Daney <ddaney@avtrex.com>

* configure.host: Enable the interpreter for mipsel-* and mips-*.
Index: configure.host
===================================================================
--- configure.host	(revision 115540)
+++ configure.host	(working copy)
@@ -90,6 +90,9 @@
  	enable_java_net_default=no
  	enable_getenv_properties_default=no
 	;;
+  mipsel-*|mips-*)
+	libgcj_interpreter=yes
+	;;
   i686-*|i586-*|i486-*|i386-*)
 	sysdeps_dir=i386
 	# With -fomit-frame-pointer -maccumulate-outgoing-args (implied),

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]