aboutsummaryrefslogtreecommitdiff
path: root/browser/common/source_files/mozconfig
diff options
context:
space:
mode:
authorBeatLink <beatlink@protonmail.com>2019-07-19 16:41:26 -0500
committerBeatLink <beatlink@protonmail.com>2019-07-19 16:41:26 -0500
commite5e4dc10db84095918d082dd8a181b317cba6bfd (patch)
tree5b99a464451cd639d2855ea8ee26aa5d09465c4f /browser/common/source_files/mozconfig
parentFix mach build (diff)
downloadlibrewolf-linux-e5e4dc10db84095918d082dd8a181b317cba6bfd.tar.gz
librewolf-linux-e5e4dc10db84095918d082dd8a181b317cba6bfd.tar.bz2
librewolf-linux-e5e4dc10db84095918d082dd8a181b317cba6bfd.zip
test to see if mozconfig is causing OOM issues
Diffstat (limited to 'browser/common/source_files/mozconfig')
-rw-r--r--browser/common/source_files/mozconfig4
1 files changed, 2 insertions, 2 deletions
diff --git a/browser/common/source_files/mozconfig b/browser/common/source_files/mozconfig
index 4d5eb63..306452c 100644
--- a/browser/common/source_files/mozconfig
+++ b/browser/common/source_files/mozconfig
@@ -3,8 +3,8 @@
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
+# 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