diff options
author | Timothee Cour <timothee.cour2@gmail.com> | 2019-01-10 08:49:57 -0800 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2019-01-10 17:49:57 +0100 |
commit | 0bb76dde547ff9f3e80f7421d4f2c556d7aefc4d (patch) | |
tree | a9cbc562bd55e3e619c72e80c2eb8371eefdc70c /build_all.sh | |
parent | 8e600b78ca965117a053751f38ccaffa3e16780a (diff) | |
download | Nim-0bb76dde547ff9f3e80f7421d4f2c556d7aefc4d.tar.gz |
fixes #10030 bootstrap is insulated from user config (#10244)
Diffstat (limited to 'build_all.sh')
-rw-r--r-- | build_all.sh | 6 |
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. |