diff options
Diffstat (limited to 'build_all.sh')
-rwxr-xr-x | build_all.sh | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/build_all.sh b/build_all.sh new file mode 100755 index 000000000..83848f41a --- /dev/null +++ b/build_all.sh @@ -0,0 +1,17 @@ +#!/bin/sh +# DO NO EDIT DIRECTLY! auto-generated by `nim r tools/ci_generate.nim` + +# build development version of the compiler; can be rerun safely. +# arguments can be passed, e.g.: +# CC=gcc ucpu=amd64 uos=darwin + +set -u # error on undefined variables +set -e # exit on first error + +. ci/funs.sh +nimBuildCsourcesIfNeeded "$@" + +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 + |