summary refs log tree commit diff stats
path: root/build_all.sh
diff options
context:
space:
mode:
authorTimothee Cour <timothee.cour2@gmail.com>2019-01-10 08:49:57 -0800
committerAndreas Rumpf <rumpf_a@web.de>2019-01-10 17:49:57 +0100
commit0bb76dde547ff9f3e80f7421d4f2c556d7aefc4d (patch)
treea9cbc562bd55e3e619c72e80c2eb8371eefdc70c /build_all.sh
parent8e600b78ca965117a053751f38ccaffa3e16780a (diff)
downloadNim-0bb76dde547ff9f3e80f7421d4f2c556d7aefc4d.tar.gz
fixes #10030 bootstrap is insulated from user config (#10244)
Diffstat (limited to 'build_all.sh')
-rw-r--r--build_all.sh6
1 files changed, 5 insertions, 1 deletions
diff --git a/build_all.sh b/build_all.sh
index 6c28e7407..6828bbbd8 100644
--- a/build_all.sh
+++ b/build_all.sh
@@ -26,6 +26,10 @@ build_nim_csources(){
 
 [ -f $nim_csources ] || echo_run build_nim_csources
 
-echo_run bin/nim c koch # Note: if fails, may need to `cd csources && git pull`
+# Note: if fails, may need to `cd csources && git pull`
+# Note: --skipUserCfg is to prevent newer flags from
+# breaking bootstrap phase
+echo_run bin/nim c --skipUserCfg koch
+
 echo_run ./koch boot -d:release
 echo_run ./koch tools # Compile Nimble and other tools.