Blame SOURCES/java-1.8.0-openjdk-rh1191652-hotspot-aarch64.patch

8ba7a7
# HG changeset patch
8ba7a7
# User andrew
8ba7a7
# Date 1424102734 0
8ba7a7
#      Mon Feb 16 16:05:34 2015 +0000
8ba7a7
# Node ID 4fdaf786d977aa77afdb68b8829579d31069e39c
8ba7a7
# Parent  01a0011cc101f3308c5876db8282c0fc5e3ba2e6
8ba7a7
PR2236: ppc64le should report its os.arch as ppc64le so tools can detect it
8ba7a7
Summary: Use ppc64le as the arch directory on that platform and report it in os.arch
8ba7a7
8ba7a7
--- openjdk/hotspot/make/defs.make.orig	2015-03-03 17:05:51.000000000 -0500
8ba7a7
+++ openjdk/hotspot/make/defs.make	2015-03-03 19:18:20.000000000 -0500
8ba7a7
@@ -319,6 +319,13 @@
a9a030
   LIBARCH/ppc64   = ppc64
d934b5
   LIBARCH/zero    = $(ZERO_LIBARCH)
d934b5
 
d934b5
+  # Override LIBARCH for ppc64le
d934b5
+  ifeq ($(ARCH), ppc64)
d934b5
+    ifeq ($(OPENJDK_TARGET_CPU_ENDIAN), little)
d934b5
+      LIBARCH = ppc64le
d934b5
+    endif
d934b5
+  endif
d934b5
+
a9a030
   LP64_ARCH += sparcv9 amd64 ia64 ppc64 aarch64 zero
d934b5
 endif
d934b5