[Libreoffice-commits] core.git: jvmfwk/inc jvmfwk/plugins
Heiher
r at hev.cc
Fri Jul 10 12:50:35 PDT 2015
jvmfwk/inc/vendorbase.hxx | 10 ++++++++--
jvmfwk/plugins/sunmajor/pluginlib/gnujre.cxx | 2 ++
2 files changed, 10 insertions(+), 2 deletions(-)
New commits:
commit 0f6edce22b0424d99342b73adafcaf688f044139
Author: Heiher <r at hev.cc>
Date: Tue Jul 7 17:49:01 2015 +0800
jvmfwk: pluginlib: Add support for mips64.
Change-Id: I525266468ae2ef04976d7835cc22c930293a0dc3
Reviewed-on: https://gerrit.libreoffice.org/16911
Tested-by: Jenkins <ci at libreoffice.org>
Reviewed-by: Caolán McNamara <caolanm at redhat.com>
Tested-by: Caolán McNamara <caolanm at redhat.com>
diff --git a/jvmfwk/inc/vendorbase.hxx b/jvmfwk/inc/vendorbase.hxx
index a01db56..7dc32cd 100644
--- a/jvmfwk/inc/vendorbase.hxx
+++ b/jvmfwk/inc/vendorbase.hxx
@@ -55,6 +55,12 @@ namespace jfw_plugin
OpenJDK at least, but probably not true for Lemotes JDK */
# define JFW_PLUGIN_ARCH "mipsel"
#endif
+#elif defined MIPS64
+#ifdef OSL_BIGENDIAN
+# define JFW_PLUGIN_ARCH "mips64"
+#else
+# define JFW_PLUGIN_ARCH "mips64el"
+#endif
#elif defined S390X
#define JFW_PLUGIN_ARCH "s390x"
#elif defined S390
@@ -71,9 +77,9 @@ OpenJDK at least, but probably not true for Lemotes JDK */
#define JFW_PLUGIN_ARCH "alpha"
#elif defined AARCH64
#define JFW_PLUGIN_ARCH "aarch64"
-#else // SPARC, INTEL, POWERPC, MIPS, ARM, IA64, M68K, HPPA, ALPHA
+#else // SPARC, INTEL, POWERPC, MIPS, MIPS64, ARM, IA64, M68K, HPPA, ALPHA
#error unknown platform
-#endif // SPARC, INTEL, POWERPC, MIPS, ARM, IA64, M68K, HPPA, ALPHA
+#endif // SPARC, INTEL, POWERPC, MIPS, MIPS64, ARM, IA64, M68K, HPPA, ALPHA
class MalformedVersionException
diff --git a/jvmfwk/plugins/sunmajor/pluginlib/gnujre.cxx b/jvmfwk/plugins/sunmajor/pluginlib/gnujre.cxx
index 07ec21e..9abc978 100644
--- a/jvmfwk/plugins/sunmajor/pluginlib/gnujre.cxx
+++ b/jvmfwk/plugins/sunmajor/pluginlib/gnujre.cxx
@@ -53,6 +53,8 @@ char const* const* GnuInfo::getJavaExePaths(int * size)
#if defined(MIPS) && defined(OSL_LITENDIAN)
#define GCJ_JFW_PLUGIN_ARCH "mipsel"
+#elif defined(MIPS64) && defined(OSL_LITENDIAN)
+#define GCJ_JFW_PLUGIN_ARCH "mips64el"
#else
#define GCJ_JFW_PLUGIN_ARCH JFW_PLUGIN_ARCH
#endif
More information about the Libreoffice-commits
mailing list