mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 01:14:41 +00:00
20 lines
261 B
Bash
20 lines
261 B
Bash
#!/bin/sh
|
|
set -e
|
|
set -x
|
|
|
|
if [ ! -d "csources" ]; then
|
|
git clone --depth 1 https://github.com/nim-lang/csources.git
|
|
fi
|
|
|
|
cd "csources"
|
|
sh build.sh
|
|
cd ".."
|
|
|
|
./bin/nim c koch
|
|
./koch boot -d:release
|
|
|
|
cp -f install.sh.template install.sh
|
|
chmod +x install.sh
|
|
|
|
exit 0
|