diff options
Diffstat (limited to 'bootstrap.sh')
-rwxr-xr-x | bootstrap.sh | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/bootstrap.sh b/bootstrap.sh new file mode 100755 index 000000000..7f19c2440 --- /dev/null +++ b/bootstrap.sh @@ -0,0 +1,22 @@ +#!/bin/sh +set -e +set -x + +if [ ! -e csources/.git ]; then + git clone --depth 1 git://github.com/nim-lang/csources.git csources +fi + +cd "csources" +sh build.sh +cd ".." + +./bin/nim c koch +./koch boot -d:release +./koch geninstall + +set +x + +echo +echo 'Install Nim using "./install.sh <dir>" or "sudo ./install.sh <dir>".' + +exit 0 |