diff options
-rw-r--r-- | meta-oe/recipes-extended/mozjs/mozjs-102/0001-add-arm-to-list-of-mozinline.patch | 25 | ||||
-rw-r--r-- | meta-oe/recipes-extended/mozjs/mozjs-102_102.5.0.bb | 1 |
2 files changed, 26 insertions, 0 deletions
diff --git a/meta-oe/recipes-extended/mozjs/mozjs-102/0001-add-arm-to-list-of-mozinline.patch b/meta-oe/recipes-extended/mozjs/mozjs-102/0001-add-arm-to-list-of-mozinline.patch new file mode 100644 index 0000000000..02f5e5c7e1 --- /dev/null +++ b/meta-oe/recipes-extended/mozjs/mozjs-102/0001-add-arm-to-list-of-mozinline.patch | |||
@@ -0,0 +1,25 @@ | |||
1 | Backport patch from firefox bugzilla to fix compile error for qemuarm with | ||
2 | some armv7ve tunes such as 'armv7vethf' and 'armv7vet-vfpv3d16': | ||
3 | |||
4 | | /path/to/build/tmp/work/armv7vet2hf-vfp-poky-linux-gnueabi/mozjs-102/102.5.0-r0/build/js/src/jit/AtomicOperationsGenerated.h:240:17: | ||
5 | error: 'asm' operand has impossible constraints | ||
6 | | 240 | asm volatile ( | ||
7 | | | ^~~ | ||
8 | |||
9 | Upstream-Status: Submitted [https://bugzilla.mozilla.org/show_bug.cgi?id=1761665] | ||
10 | |||
11 | Signed-off-by: Kai Kang <kai.kang@windriver.com> | ||
12 | |||
13 | diff --git a/js/src/jit/GenerateAtomicOperations.py b/js/src/jit/GenerateAtomicOperations.py | ||
14 | index d8a38a0..65f91ab 100644 | ||
15 | --- a/js/src/jit/GenerateAtomicOperations.py | ||
16 | +++ b/js/src/jit/GenerateAtomicOperations.py | ||
17 | @@ -856,7 +856,7 @@ def generate_atomics_header(c_out): | ||
18 | |||
19 | # Work around a GCC issue on 32-bit x86 by adding MOZ_NEVER_INLINE. | ||
20 | # See bug 1756347. | ||
21 | - if is_gcc and cpu_arch == "x86": | ||
22 | + if is_gcc and cpu_arch in ("x86", "arm"): | ||
23 | contents = contents.replace("INLINE_ATTR", "MOZ_NEVER_INLINE inline") | ||
24 | else: | ||
25 | contents = contents.replace("INLINE_ATTR", "inline") | ||
diff --git a/meta-oe/recipes-extended/mozjs/mozjs-102_102.5.0.bb b/meta-oe/recipes-extended/mozjs/mozjs-102_102.5.0.bb index d38ae10b87..5e884b6f64 100644 --- a/meta-oe/recipes-extended/mozjs/mozjs-102_102.5.0.bb +++ b/meta-oe/recipes-extended/mozjs/mozjs-102_102.5.0.bb | |||
@@ -15,6 +15,7 @@ SRC_URI = "https://archive.mozilla.org/pub/firefox/releases/${PV}esr/source/fire | |||
15 | file://0001-rewrite-cargo-host-linker-in-python3.patch \ | 15 | file://0001-rewrite-cargo-host-linker-in-python3.patch \ |
16 | file://py-3.11.patch \ | 16 | file://py-3.11.patch \ |
17 | file://musl-disable-stackwalk.patch \ | 17 | file://musl-disable-stackwalk.patch \ |
18 | file://0001-add-arm-to-list-of-mozinline.patch \ | ||
18 | " | 19 | " |
19 | SRC_URI[sha256sum] = "017dd44b1285913f477074802707a4c76ed1a28270ec5a327bbb76574cc057d8" | 20 | SRC_URI[sha256sum] = "017dd44b1285913f477074802707a4c76ed1a28270ec5a327bbb76574cc057d8" |
20 | 21 | ||