Last active
March 19, 2016 19:15
-
-
Save aurora/7995a5a37a90a209fa70 to your computer and use it in GitHub Desktop.
Installer for nim development version
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
tmpdir=$(mktemp -t /tmp) | |
cd $tmpdir | |
git clone -b devel git://github.com/nim-lang/Nim.git | |
cd Nim | |
git clone -b devel --depth 1 git://github.com/nim-lang/csources | |
cd csources && sh build.sh | |
cd .. | |
bin/nim c koch | |
./koch boot -d:release | |
sudo ./koch install /usr/local/bin |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment