diff options
Diffstat (limited to 'community/openjdk10/arm.patch')
-rw-r--r-- | community/openjdk10/arm.patch | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/community/openjdk10/arm.patch b/community/openjdk10/arm.patch deleted file mode 100644 index e0f65348be..0000000000 --- a/community/openjdk10/arm.patch +++ /dev/null @@ -1,29 +0,0 @@ ---- old/src/hotspot/os_cpu/linux_arm/os_linux_arm.cpp -+++ new/src/hotspot/os_cpu/linux_arm/os_linux_arm.cpp -@@ -70,7 +70,6 @@ - # include <pwd.h> - # include <poll.h> - # include <ucontext.h> --# include <fpu_control.h> - # include <asm/ptrace.h> - - #define SPELL_REG_SP "sp" -@@ -103,6 +102,18 @@ - #define ARM_REGS_IN_CONTEXT 31 - - #else -+ -+// Stupid hack as the origin if below doesnt compile with gcc 8.2.0: -+// -+// os_linux_arm.cpp:114:5: error: missing binary operator before token "(" -+// #if NGREG == 16 -+// ^~~~~ -+// -+// The NGREG is 18, so force it to that value. -+#ifdef NGREG -+# undef NGREG -+#endif -+#define NGREG 18 - - #if NGREG == 16 - // These definitions are based on the observation that until |