From 73f56d45cad83448f843e79d02dda1f4f714d81a Mon Sep 17 00:00:00 2001 From: jcavallo Date: Tue, 7 Jul 2015 15:37:47 +0200 Subject: [PATCH] Changed linked to nim-lang/Nim rather than Araq/Nim, replace build.sh with bootstrap.sh --- Getting-Started.md | 18 ++++++------------ 1 file changed, 6 insertions(+), 12 deletions(-) diff --git a/Getting-Started.md b/Getting-Started.md index 1387f71..9d3bca9 100644 --- a/Getting-Started.md +++ b/Getting-Started.md @@ -1,28 +1,22 @@ To get the source code you need either of these: -* A working web browser + tar(or equivalent): https://github.com/Araq/Nim/tarball/master -* wget + tar: `wget --no-check-certificate "https://github.com/Araq/Nim/tarball/master"` -* git: `git clone --depth 1 git://github.com/Araq/Nim.git` +* A working web browser + tar(or equivalent): https://github.com/nim-lang/Nim/tarball/master +* wget + tar: `wget --no-check-certificate "https://github.com/nim-lang/Nim/tarball/master"` +* git: `git clone --depth 1 git://github.com/nim-lang/Nim.git` ### Bootstrapping After downloading the source (and extracting it), you need to extract build/csources.zip then you can bootstrap with: -* `./build.sh` or `build.bat` (Windows) -* `nim c koch` -* `koch boot [-d:release]` +* `./bootstrap.sh` * Put Nim on your PATH * For Linux, you only need a symlink: `ln -s $PWD/bin/nim /home/user/bin` #### A simple script ``` -git clone git://github.com/Araq/Nim.git +git clone git://github.com/nim-lang/Nim.git cd Nim -git clone --depth 1 git://github.com/nim-lang/csources -cd csources && sh build.sh -cd .. -bin/nim c koch -./koch boot -d:release +./boostrap.sh ``` ### Nimble