aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBeatLink <beatlink@protonmail.com>2019-07-04 05:39:11 -0500
committerBeatLink <beatlink@protonmail.com>2019-07-04 05:39:11 -0500
commit72809caec0000b1add4c3a1be65c4d2d8872576a (patch)
tree40e1601aa189f3a73449eef2925779469f0d6f7a
parentBegin phaseout of debug-notes (diff)
downloadlibrewolf-linux-72809caec0000b1add4c3a1be65c4d2d8872576a.tar.gz
librewolf-linux-72809caec0000b1add4c3a1be65c4d2d8872576a.tar.bz2
librewolf-linux-72809caec0000b1add4c3a1be65c4d2d8872576a.zip
Adds options to speed up compilation
-rw-r--r--browser/common/source_files/mozconfig4
1 files changed, 4 insertions, 0 deletions
diff --git a/browser/common/source_files/mozconfig b/browser/common/source_files/mozconfig
index 4c1a673..4d5eb63 100644
--- a/browser/common/source_files/mozconfig
+++ b/browser/common/source_files/mozconfig
@@ -2,6 +2,10 @@
# This is for the desktop version of librewolf
ac_add_options --enable-application=browser
+# This supposedly speeds up compilation (We test through dogfooding anyway)
+ac_add_options --disable-tests
+ac_add_options --disable-debug
+
# Folder to output the build files:
mk_add_options MOZ_OBJDIR=./obj_BUILD_OUTPUT
bgstack15