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