diff options
author | Zach van Rijn <me@zv.io> | 2022-04-28 15:38:29 +0000 |
---|---|---|
committer | Zach van Rijn <me@zv.io> | 2022-10-21 18:33:58 -0500 |
commit | cb92b4063486a5ebb52b6b5622f361a35f75714d (patch) | |
tree | 1c4c0e641879bde7a84347baec0ebf92b8562105 /user/node/ppc64.patch | |
parent | 20ff69194828da4a1f125d5e4e9962989060591b (diff) | |
download | packages-cb92b4063486a5ebb52b6b5622f361a35f75714d.tar.gz packages-cb92b4063486a5ebb52b6b5622f361a35f75714d.tar.bz2 packages-cb92b4063486a5ebb52b6b5622f361a35f75714d.tar.xz packages-cb92b4063486a5ebb52b6b5622f361a35f75714d.zip |
user/node: bump { 10.21.0 --> 16.15.0 }. fixes #604.
Diffstat (limited to 'user/node/ppc64.patch')
-rw-r--r-- | user/node/ppc64.patch | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/user/node/ppc64.patch b/user/node/ppc64.patch deleted file mode 100644 index f76618562..000000000 --- a/user/node/ppc64.patch +++ /dev/null @@ -1,40 +0,0 @@ ---- a/deps/v8/src/ppc/assembler-ppc.h.old 2019-03-05 15:16:29.000000000 +0000 -+++ b/deps/v8/src/ppc/assembler-ppc.h 2019-04-02 07:05:25.977213735 +0000 -@@ -48,7 +48,8 @@ - #include "src/ppc/constants-ppc.h" - - #if V8_HOST_ARCH_PPC && \ -- (V8_OS_AIX || (V8_TARGET_ARCH_PPC64 && V8_TARGET_BIG_ENDIAN)) -+ (V8_OS_AIX || (V8_TARGET_ARCH_PPC64 && \ -+ (V8_TARGET_BIG_ENDIAN && (!defined(_CALL_ELF) || _CALL_ELF == 1)))) - #define ABI_USES_FUNCTION_DESCRIPTORS 1 - #else - #define ABI_USES_FUNCTION_DESCRIPTORS 0 -@@ -60,13 +61,15 @@ - #define ABI_PASSES_HANDLES_IN_REGS 0 - #endif - --#if !V8_HOST_ARCH_PPC || !V8_TARGET_ARCH_PPC64 || V8_TARGET_LITTLE_ENDIAN -+#if !V8_HOST_ARCH_PPC || !V8_TARGET_ARCH_PPC64 || \ -+ (V8_TARGET_LITTLE_ENDIAN || (defined(_CALL_ELF) && _CALL_ELF == 2)) - #define ABI_RETURNS_OBJECT_PAIRS_IN_REGS 1 - #else - #define ABI_RETURNS_OBJECT_PAIRS_IN_REGS 0 - #endif - --#if !V8_HOST_ARCH_PPC || (V8_TARGET_ARCH_PPC64 && V8_TARGET_LITTLE_ENDIAN) -+#if !V8_HOST_ARCH_PPC || (V8_TARGET_ARCH_PPC64 && \ -+ (V8_TARGET_LITTLE_ENDIAN || (defined(_CALL_ELF) && _CALL_ELF == 2))) - #define ABI_CALL_VIA_IP 1 - #else - #define ABI_CALL_VIA_IP 0 -@@ -220,7 +220,8 @@ - // The following constants describe the stack frame linkage area as - // defined by the ABI. Note that kNumRequiredStackFrameSlots must - // satisfy alignment requirements (rounding up if required). --#if V8_TARGET_ARCH_PPC64 && V8_TARGET_LITTLE_ENDIAN -+#if V8_TARGET_ARCH_PPC64 && (V8_TARGET_LITTLE_ENDIAN || \ -+ defined(_CALL_ELF) && _CALL_ELF == 2) - // [0] back chain - // [1] condition register save area - // [2] link register save area |