diff options
author | Ivan Yonchovski <yyoncho@users.noreply.github.com> | 2022-08-09 21:04:52 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-09 14:04:52 -0400 |
commit | ec2bc2a50e268bb08903f1cf83631d93caa34c8f (patch) | |
tree | b44de4dd42681211b4200662ee9cd414db6181af /build_all.sh | |
parent | b4157f6772574c18232ff7a663c57ea19804f8f5 (diff) | |
download | Nim-ec2bc2a50e268bb08903f1cf83631d93caa34c8f.tar.gz |
Build compiler with --noNimblePath (#20168)
- Fixes https://github.com/nim-lang/Nim/issues/18840
Diffstat (limited to 'build_all.sh')
-rwxr-xr-x | build_all.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build_all.sh b/build_all.sh index fb3d15d45..83848f41a 100755 --- a/build_all.sh +++ b/build_all.sh @@ -11,7 +11,7 @@ set -e # exit on first error . ci/funs.sh nimBuildCsourcesIfNeeded "$@" -echo_run bin/nim c --skipUserCfg --skipParentCfg --hints:off koch +echo_run bin/nim c --noNimblePath --skipUserCfg --skipParentCfg --hints:off koch echo_run ./koch boot -d:release --skipUserCfg --skipParentCfg --hints:off echo_run ./koch tools --skipUserCfg --skipParentCfg --hints:off |