This repo contains the C sources required to bootstrap the Nim
compiler. Building these will not result in the latest compiler
being built, these C sources should be used in conjuction with koch
.
$ git clone git://github.com/Araq/Nim.git
$ cd Nim
$ git clone --depth 1 git://github.com/nim-lang/csources
$ cd csources && sh build.sh # or .bat for Windows
$ cd ..
$ bin/nim c koch
$ ./koch boot -d:release
These C sources are automatically generated by the niminst
tool in Nim's repo. If you want to fix something in them you need to edit that tool not the C sources here.