]> git.pld-linux.org Git - packages/mozjs78.git/blob - arm.patch
icu rebuild
[packages/mozjs78.git] / arm.patch
1 From: Jordan Petridis <jordan@centricular.com>
2 Date: Sun, 16 Feb 2020 21:42:42 +0000
3 Subject: sdk/mozjs68: import a patch to workaround arm compilation issue
4
5 Our glibc headers don't include the expected structs needed
6 to compile the code. The primary target of this code seems
7 to be Android.
8
9 Bug-Upstream: https://bugzilla.mozilla.org/show_bug.cgi?id=1526653
10 Origin: https://gitlab.gnome.org/GNOME/gnome-build-meta/blob/master/files/mozjs68/armv7_disable_WASM_EMULATE_ARM_UNALIGNED_FP_ACCESS.patch
11 ---
12  js/src/wasm/WasmSignalHandlers.cpp | 2 +-
13  1 file changed, 1 insertion(+), 1 deletion(-)
14
15 diff --git a/js/src/wasm/WasmSignalHandlers.cpp b/js/src/wasm/WasmSignalHandlers.cpp
16 index a6610f3..78941bf 100644
17 --- a/js/src/wasm/WasmSignalHandlers.cpp
18 +++ b/js/src/wasm/WasmSignalHandlers.cpp
19 @@ -244,7 +244,7 @@ using mozilla::DebugOnly;
20  // If you run into compile problems on a tier-3 platform, you can disable the
21  // emulation here.
22  
23 -#if defined(__linux__) && defined(__arm__)
24 +#if 0 && defined(__linux__) && defined(__arm__)
25  #  define WASM_EMULATE_ARM_UNALIGNED_FP_ACCESS
26  #endif
27  
This page took 0.114096 seconds and 4 git commands to generate.