Merge pull request #579 from LoryPelli/nim-1.6.2
Updated to `Nim 1.6.2`
This commit is contained in:
commit
fa4af90548
|
@ -0,0 +1,18 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
PREFIX=$(realpath $(dirname $0))
|
||||||
|
|
||||||
|
mkdir -p build
|
||||||
|
|
||||||
|
cd build
|
||||||
|
|
||||||
|
# Prebuilt binary - source *can* be built, but it requires gcc
|
||||||
|
curl -L "https://nim-lang.org/download/nim-1.6.2-linux_x64.tar.xz" -o nim.tar.xz
|
||||||
|
tar xf nim.tar.xz --strip-components=1
|
||||||
|
rm nim.tar.xz
|
||||||
|
|
||||||
|
./install.sh "$PREFIX"
|
||||||
|
|
||||||
|
cd ../
|
||||||
|
|
||||||
|
rm -rf build
|
|
@ -0,0 +1,5 @@
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
# Compile nim file(s)
|
||||||
|
nim --hints:off --out:out --nimcache:./ c "$@"
|
||||||
|
chmod +x out
|
|
@ -0,0 +1 @@
|
||||||
|
export PATH=$PWD/nim/bin:$PATH
|
|
@ -0,0 +1,5 @@
|
||||||
|
{
|
||||||
|
"language": "nim",
|
||||||
|
"version": "1.6.2",
|
||||||
|
"aliases": []
|
||||||
|
}
|
|
@ -0,0 +1,4 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
shift # Filename is only used to compile
|
||||||
|
./out "$@"
|
|
@ -0,0 +1 @@
|
||||||
|
echo("OK")
|
Loading…
Reference in New Issue