diff options
author | Timothee Cour <timothee.cour2@gmail.com> | 2019-01-15 23:14:55 -0800 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2019-01-16 08:14:55 +0100 |
commit | e0afacb9f2c182cf23c2f9dcaa87876b880752d3 (patch) | |
tree | 1259603bf2c9176e20227665253987927de39644 /build_all.sh | |
parent | fbd6743ea1db89eef3dd89ceb7c0cdcb648c8055 (diff) | |
download | Nim-e0afacb9f2c182cf23c2f9dcaa87876b880752d3.tar.gz |
properly fix #10030 by skipping all external configs (#10324)
Diffstat (limited to 'build_all.sh')
-rw-r--r-- | build_all.sh | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/build_all.sh b/build_all.sh index 6828bbbd8..0706dcaf2 100644 --- a/build_all.sh +++ b/build_all.sh @@ -27,9 +27,8 @@ build_nim_csources(){ [ -f $nim_csources ] || echo_run build_nim_csources # 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 +# see D20190115T162028 +echo_run bin/nim c --skipUserCfg --skipParentCfg koch echo_run ./koch boot -d:release echo_run ./koch tools # Compile Nimble and other tools. |