mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-09-14 10:17:40 +00:00
mozjs: Disable JIT on mips
Fixes error: static assertion failed: MIPS32 jit only supports FR=0 fpu mode Signed-off-by: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
parent
66a0f5b8eb
commit
be77bddae1
@ -31,6 +31,10 @@ export AS = "${CC}"
|
|||||||
|
|
||||||
export RUSTFLAGS
|
export RUSTFLAGS
|
||||||
|
|
||||||
|
JIT ?= ""
|
||||||
|
|
||||||
|
JIT:mipsarch = "--disable-jit"
|
||||||
|
|
||||||
do_configure() {
|
do_configure() {
|
||||||
cd ${B}
|
cd ${B}
|
||||||
python3 ${S}/configure.py \
|
python3 ${S}/configure.py \
|
||||||
@ -39,7 +43,8 @@ do_configure() {
|
|||||||
--host=${BUILD_SYS} \
|
--host=${BUILD_SYS} \
|
||||||
--prefix=${prefix} \
|
--prefix=${prefix} \
|
||||||
--libdir=${libdir} \
|
--libdir=${libdir} \
|
||||||
--disable-jemalloc
|
--disable-jemalloc \
|
||||||
|
${JIT}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user