From fe4d6e8cc40041573fd100998541be21066175fe Mon Sep 17 00:00:00 2001 From: APEX FIGHT Date: Sat, 1 Nov 2025 04:13:30 -0400 Subject: [PATCH] targeted builds and cross comp --- src/build.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/build.sh b/src/build.sh index 8a3af7f..91a6ca7 100644 --- a/src/build.sh +++ b/src/build.sh @@ -35,14 +35,14 @@ cd "firefox-$MINORVERSION/js/src" echo Making Build Path... mkdir _build cd _build - +# https://clang.llvm.org/docs/CrossCompilation.html echo Configuring build... -../configure --disable-jemalloc --with-system-zlib --with-system-icu --prefix="$BUILDPATH/bin" \ - --with-intl-api --enable-optimize +../configure --disable-jemalloc --with-system-zlib --with-system-icu --prefix="$BUILDPATH/bin" --with-intl-api --enable-optimize --target=x86_64-pc-linux-gnu + echo Compiling... -make -make install +make -k +make -k install echo Finished Building!