summaryrefslogtreecommitdiff
path: root/jvmfwk
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-08-21 08:52:16 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-08-21 08:54:16 +0100
commit170109708e6a082252efba3d2f1726bbd82b6452 (patch)
tree8c2cee4f18116c85504aa0e0b09637e56a683357 /jvmfwk
parentb3698a6ac2642777ef0c25688e5dd5acde9594ba (diff)
Related: rhbz#1125588 first steps for ppc64le
almost certainly won't get us too far, but a start Change-Id: Ic20b97a97b6d506c32322173bd8332d15c3a4555
Diffstat (limited to 'jvmfwk')
-rw-r--r--jvmfwk/plugins/sunmajor/pluginlib/vendorbase.hxx6
1 files changed, 5 insertions, 1 deletions
diff --git a/jvmfwk/plugins/sunmajor/pluginlib/vendorbase.hxx b/jvmfwk/plugins/sunmajor/pluginlib/vendorbase.hxx
index 25baaee5f4f8..fee24309e6b2 100644
--- a/jvmfwk/plugins/sunmajor/pluginlib/vendorbase.hxx
+++ b/jvmfwk/plugins/sunmajor/pluginlib/vendorbase.hxx
@@ -40,7 +40,11 @@ namespace jfw_plugin
#elif defined INTEL
#define JFW_PLUGIN_ARCH "i386"
#elif defined POWERPC64
-#define JFW_PLUGIN_ARCH "ppc64"
+#ifdef OSL_BIGENDIAN
+# define JFW_PLUGIN_ARCH "ppc64"
+#else
+# define JFW_PLUGIN_ARCH "ppc64le"
+#endif
#elif defined POWERPC
#define JFW_PLUGIN_ARCH "ppc"
#elif defined MIPS