summary refs log tree commit diff stats
path: root/build_all.sh
diff options
context:
space:
mode:
authorȘtefan Talpalaru <stefantalpalaru@yahoo.com>2020-02-14 21:15:52 +0100
committerGitHub <noreply@github.com>2020-02-14 21:15:52 +0100
commit3d7d06571c1cf287362c9f1b00b4e2d4f95fdc1b (patch)
treeff20623201950376802198000a1a2e13bbe063f7 /build_all.sh
parentccd2e044cb820d186c7dac96c753ce25253ad628 (diff)
downloadNim-3d7d06571c1cf287362c9f1b00b4e2d4f95fdc1b.tar.gz
isolate the build process from external config files (#13411)
Diffstat (limited to 'build_all.sh')
-rw-r--r--build_all.sh7
1 files changed, 4 insertions, 3 deletions
diff --git a/build_all.sh b/build_all.sh
index 2ed2233e9..d3bba2211 100644
--- a/build_all.sh
+++ b/build_all.sh
@@ -27,7 +27,7 @@ build_nim_csources(){
       # some args were passed (eg: `--cpu i386`), need to call build.sh
       build_nim_csources_via_script "$@"
     else
-      # no args, use multhreaded (5X faster on 16 cores: 10s instead of 50s)
+      # no args, use multiple Make jobs (5X faster on 16 cores: 10s instead of 50s)
       makeX=make
       unamestr=$(uname)
       if [ "$unamestr" = 'FreeBSD' ]; then
@@ -47,5 +47,6 @@ build_nim_csources(){
 # Note: if fails, may need to `cd csources && git pull`
 echo_run bin/nim c --skipUserCfg --skipParentCfg koch
 
-echo_run ./koch boot -d:release
-echo_run ./koch tools # Compile Nimble and other tools.
+echo_run ./koch boot -d:release --skipUserCfg --skipParentCfg
+echo_run ./koch tools --skipUserCfg --skipParentCfg # Compile Nimble and other tools.
+