diff options
author | Araq <rumpf_a@web.de> | 2014-11-10 01:33:25 +0100 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2014-11-10 01:33:25 +0100 |
commit | b6e006fbbe0db7c786e4fb4a3039d544991e380c (patch) | |
tree | a1ed29727d3baeb03da87678a88631ed76e52b1c /readme.md | |
parent | 830e0c0009d25d84a26fc997722eee4ecd015fd9 (diff) | |
download | Nim-b6e006fbbe0db7c786e4fb4a3039d544991e380c.tar.gz |
fixes #1646
Diffstat (limited to 'readme.md')
-rw-r--r-- | readme.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/readme.md b/readme.md index 3cc007e3b..8a4cd93b3 100644 --- a/readme.md +++ b/readme.md @@ -6,7 +6,7 @@ documentation. Compiling the Nim compiler is quite straightforward. Because the Nim compiler itself is written in the Nim programming language the C source of an older version of the compiler are needed to bootstrap the -latest version. The C sources are available in a separate repo [here](http://github.com/nim-code/csources). +latest version. The C sources are available in a separate repo [here](http://github.com/nim-lang/csources). Pre-compiled snapshots of the compiler are also available on [Nimbuild](http://build.nim-lang.org/). Your platform however may not @@ -32,7 +32,7 @@ If you are on a fairly modern *nix system, the following steps should work: ``` $ git clone git://github.com/Araq/Nim.git $ cd Nim -$ git clone --depth 1 git://github.com/nim-code/csources +$ git clone --depth 1 git://github.com/nim-lang/csources $ cd csources && sh build.sh $ cd .. $ bin/nim c koch |