mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-19 00:13:33 +00:00
java/openjdk19: Fix the build on x86
This commit is contained in:
parent
9ce99da435
commit
8c49e908cf
@ -0,0 +1,42 @@
|
||||
--- src/jdk.hotspot.agent/bsd/native/libsaproc/BsdDebuggerLocal.cpp 2022-10-20 06:58:23.018695000 -0700
|
||||
+++ src/jdk.hotspot.agent/bsd/native/libsaproc/BsdDebuggerLocal.cpp 2022-12-29 13:13:27.000625000 -0800
|
||||
@@ -35,7 +35,11 @@
|
||||
#define amd64 1
|
||||
#endif
|
||||
|
||||
-#ifdef i386
|
||||
+#if defined(i386) && !defined(i586)
|
||||
+#define i586 1
|
||||
+#endif
|
||||
+
|
||||
+#ifdef i586
|
||||
#include "sun_jvm_hotspot_debugger_x86_X86ThreadContext.h"
|
||||
#endif
|
||||
|
||||
@@ -347,7 +351,7 @@
|
||||
}
|
||||
|
||||
#undef NPRGREG
|
||||
-#ifdef i386
|
||||
+#ifdef i586
|
||||
#define NPRGREG sun_jvm_hotspot_debugger_x86_X86ThreadContext_NPRGREG
|
||||
#endif
|
||||
#ifdef amd64
|
||||
@@ -369,7 +373,7 @@
|
||||
|
||||
#undef REG_INDEX
|
||||
|
||||
-#ifdef i386
|
||||
+#ifdef i586
|
||||
#define REG_INDEX(reg) sun_jvm_hotspot_debugger_x86_X86ThreadContext_##reg
|
||||
|
||||
regs[REG_INDEX(GS)] = (uintptr_t) gregs.r_gs;
|
||||
@@ -388,7 +392,7 @@
|
||||
regs[REG_INDEX(CS)] = (uintptr_t) gregs.r_cs;
|
||||
regs[REG_INDEX(SS)] = (uintptr_t) gregs.r_ss;
|
||||
|
||||
-#endif /* i386 */
|
||||
+#endif /* i586 */
|
||||
|
||||
#ifdef amd64
|
||||
#define REG_INDEX(reg) sun_jvm_hotspot_debugger_amd64_AMD64ThreadContext_##reg
|
Loading…
Reference in New Issue
Block a user