View | Details | Raw Unified | Return to bug 239368 | Differences between
and this patch

Collapse All | Expand All

(-)Makefile (+3 lines)
Lines 135-140 Link Here
135
.if ${ARCH} != amd64
135
.if ${ARCH} != amd64
136
CONFIGURE_ARGS+=	--enable-aot=no
136
CONFIGURE_ARGS+=	--enable-aot=no
137
.endif
137
.endif
138
.if ${ARCH} == powerpc64 && ${OSREL:C/\.[0-9]//} == 12
139
EXTRA_PATCHES=		${PATCHDIR}/extra-patch-src_hotspot_cpu_ppc_vm__version__ppc.hpp
140
.endif
138
141
139
.if empty(ICONV_LIB)
142
.if empty(ICONV_LIB)
140
ICONV_CFLAGS=	-DLIBICONV_PLUG
143
ICONV_CFLAGS=	-DLIBICONV_PLUG
(-)files/extra-patch-src_hotspot_cpu_ppc_vm__version__ppc.hpp (+11 lines)
Line 0 Link Here
1
--- src/hotspot/cpu/ppc/vm_version_ppc.hpp.orig	2019-10-16 11:31:09.000000000 -0700
2
+++ src/hotspot/cpu/ppc/vm_version_ppc.hpp	2019-10-23 12:54:06.972903000 -0700
3
@@ -108,7 +108,7 @@
4
   static bool has_lqarx()   { return (_features & lqarx_m) != 0; }
5
   static bool has_vcipher() { return (_features & vcipher_m) != 0; }
6
   static bool has_vpmsumb() { return (_features & vpmsumb_m) != 0; }
7
-  static bool has_mfdscr()  { return (_features & mfdscr_m) != 0; }
8
+  static bool has_mfdscr()  { return false; }
9
   static bool has_vsx()     { return (_features & vsx_m) != 0; }
10
   static bool has_ldbrx()   { return (_features & ldbrx_m) != 0; }
11
   static bool has_stdbrx()  { return (_features & stdbrx_m) != 0; }

Return to bug 239368