build_all.bat 443 B

123456789101112131415161718
  1. @echo off
  2. rem build development version of the compiler; can be rerun safely
  3. if not exist csources (
  4. git clone --depth 1 https://github.com/nim-lang/csources.git
  5. )
  6. if not exist bin\nim.exe (
  7. cd csources
  8. if PROCESSOR_ARCHITECTURE == AMD64 (
  9. SET ARCH=64
  10. )
  11. CALL build.bat
  12. cd ..
  13. )
  14. bin\nim.exe c --skipUserCfg --skipParentCfg koch
  15. koch.exe boot -d:release --skipUserCfg --skipParentCfg
  16. koch.exe tools --skipUserCfg --skipParentCfg