build_all.sh 545 B

123456789101112131415161718
  1. #!/bin/sh
  2. # DO NO EDIT DIRECTLY! auto-generated by `nim r tools/ci_generate.nim`
  3. # build development version of the compiler; can be rerun safely.
  4. # arguments can be passed, e.g.:
  5. # CC=gcc ucpu=amd64 uos=darwin
  6. set -u # error on undefined variables
  7. set -e # exit on first error
  8. . ci/funs.sh
  9. nimBuildCsourcesIfNeeded "$@"
  10. echo_run bin/nim c --noNimblePath --skipUserCfg --skipParentCfg --hints:off koch
  11. echo_run ./koch boot -d:release --skipUserCfg --skipParentCfg --hints:off
  12. echo_run ./koch tools --skipUserCfg --skipParentCfg --hints:off