diff options
author | Simon Frankenberger <simon@fraho.eu> | 2020-03-25 08:05:18 +0100 |
---|---|---|
committer | Rasmus Thomsen <oss@cogitri.dev> | 2020-03-25 12:41:14 +0000 |
commit | 8118704de68b0fe5edfc9d98cf62536b08eae5f9 (patch) | |
tree | bde4dde143bf9414cace6236203eb1b85e768eb6 /community/openjdk11/arm.patch | |
parent | 1dac0e83f4cc792086d453befd08cca47888a07d (diff) | |
download | aports-8118704de68b0fe5edfc9d98cf62536b08eae5f9.tar.bz2 aports-8118704de68b0fe5edfc9d98cf62536b08eae5f9.tar.xz |
community/openjdk11: Cleanup and unify with other openjdk aports
Diffstat (limited to 'community/openjdk11/arm.patch')
-rw-r--r-- | community/openjdk11/arm.patch | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/community/openjdk11/arm.patch b/community/openjdk11/arm.patch deleted file mode 100644 index b2be6b3f4d..0000000000 --- a/community/openjdk11/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 -@@ -71,7 +71,6 @@ - # include <pwd.h> - # include <poll.h> - # include <ucontext.h> --# include <fpu_control.h> - # include <asm/ptrace.h> - - #define SPELL_REG_SP "sp" -@@ -104,6 +103,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 |