svn commit: r508130 - head/java/openjdk11/files

Greg Lewis glewis at FreeBSD.org
Sun Aug 4 23:04:34 UTC 2019


Author: glewis
Date: Sun Aug  4 23:04:33 2019
New Revision: 508130
URL: https://svnweb.freebsd.org/changeset/ports/508130

Log:
  Fix the build on PowerPC64
  
  PR:		239624
  Submitted by:	Curtis Hamilton <hamiltcl at verizon.net>

Added:
  head/java/openjdk11/files/patch-src_hotspot_os__cpu_bsd__ppc_os__bsd__ppc.cpp   (contents, props changed)

Added: head/java/openjdk11/files/patch-src_hotspot_os__cpu_bsd__ppc_os__bsd__ppc.cpp
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/java/openjdk11/files/patch-src_hotspot_os__cpu_bsd__ppc_os__bsd__ppc.cpp	Sun Aug  4 23:04:33 2019	(r508130)
@@ -0,0 +1,11 @@
+--- src/hotspot/os_cpu/bsd_ppc/os_bsd_ppc.cpp.orig
++++ src/hotspot/os_cpu/bsd_ppc/os_bsd_ppc.cpp
+@@ -133,7 +133,7 @@
+ }
+ 
+ static unsigned long ucontext_get_trap(const ucontext_t * uc) {
+-  return uc->uc_mcontext.regs->trap;
++  return uc->uc_mcontext.mc_exc;
+ }
+ 
+ ExtendedPC os::fetch_frame_from_context(const void* ucVoid,


More information about the svn-ports-all mailing list