Skip to content

Commit

Permalink
Docs: Update Nim build instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
guidovranken committed Jul 13, 2023
1 parent 982eb63 commit 7b75bc5
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions docs/nim.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# x64

```
wget 'https://nim-lang.org/download/nim-1.6.12-linux_x64.tar.xz'
tar Jxf nim-1.6.12-linux_x64.tar.xz
export NIM_PATH=$(realpath nim-1.6.12)
```

# x32

```
wget 'https://nim-lang.org/download/nim-1.6.12-linux_x32.tar.xz'
tar Jxf nim-1.6.12-linux_x32.tar.xz
export NIM_PATH=$(realpath nim-1.6.12)
```

# ARM64

```
wget https://github.com/nim-lang/nightlies/releases/download/2023-03-10-version-1-6-1aa9273640c0c51486cf3a7b67282fe58f360e91/nim-1.6.12-linux_arm64.tar.xz
tar Jxf nim-1.6.12-linux_arm64.tar.xz
export NIM_PATH=$(realpath nim-1.6.12)
```

0 comments on commit 7b75bc5

Please sign in to comment.