aboutsummaryrefslogtreecommitdiff
path: root/binary_tarball/scripts/3_Configure_Source_Code.sh
diff options
context:
space:
mode:
authorohfp <1813007-ohfp@users.noreply.gitlab.com>2020-03-29 13:09:14 +0200
committerohfp <1813007-ohfp@users.noreply.gitlab.com>2020-03-29 13:09:14 +0200
commit96ffa1c3ab28233df204607f16ec3f221af58ed3 (patch)
treef5cbcc05aca836a4ee3d2f308aa2a3f1ba430449 /binary_tarball/scripts/3_Configure_Source_Code.sh
parentlibclang-path (diff)
downloadlibrewolf-linux-96ffa1c3ab28233df204607f16ec3f221af58ed3.tar.gz
librewolf-linux-96ffa1c3ab28233df204607f16ec3f221af58ed3.tar.bz2
librewolf-linux-96ffa1c3ab28233df204607f16ec3f221af58ed3.zip
interfere less with what mach bootstrap wants to do
Diffstat (limited to 'binary_tarball/scripts/3_Configure_Source_Code.sh')
-rwxr-xr-xbinary_tarball/scripts/3_Configure_Source_Code.sh16
1 files changed, 7 insertions, 9 deletions
diff --git a/binary_tarball/scripts/3_Configure_Source_Code.sh b/binary_tarball/scripts/3_Configure_Source_Code.sh
index 01abe07..37f5bd8 100755
--- a/binary_tarball/scripts/3_Configure_Source_Code.sh
+++ b/binary_tarball/scripts/3_Configure_Source_Code.sh
@@ -20,10 +20,6 @@ cd $srcdir
cat >${CI_PROJECT_DIR}/mozconfig <<END
ac_add_options --enable-application=browser
-# to build on ubuntu and pick up clang
-ac_add_options --with-libclang-path="/usr/lib/${CARCH}-linux-gnu/"
-ac_add_options --with-clang-path="/usr/bin/clang-9"
-
# This supposedly speeds up compilation (We test through dogfooding anyway)
ac_add_options --disable-tests
ac_add_options --disable-debug
@@ -33,11 +29,13 @@ ac_add_options --disable-debug
ac_add_options --enable-release
ac_add_options --enable-hardening
ac_add_options --enable-rust-simd
-export CC='clang-9'
-export CXX='clang++-9'
-export AR=llvm-ar-9
-export NM=llvm-nm-9
-export RANLIB=llvm-ranlib-9
+
+# let mach bootstrap do its thing instead
+# export CC='clang-9'
+# export CXX='clang++-9'
+# export AR=llvm-ar-9
+# export NM=llvm-nm-9
+# export RANLIB=llvm-ranlib-9
# Branding
ac_add_options --enable-update-channel=release
bgstack15