diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2016-12-27 19:18:41 +0100 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2016-12-27 19:18:41 +0100 |
commit | 0af85846bbd8d02ce7d5b4863b643af2140b7490 (patch) | |
tree | a1b76b9abfcae178dfa58aa26220024e0eb349bd /tools/niminst | |
parent | 847210b799d9cce999acaf30d4d1089fdc203d09 (diff) | |
download | Nim-0af85846bbd8d02ce7d5b4863b643af2140b7490.tar.gz |
support for arm64; fixes #2147
Diffstat (limited to 'tools/niminst')
-rw-r--r-- | tools/niminst/buildsh.tmpl | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/niminst/buildsh.tmpl b/tools/niminst/buildsh.tmpl index c571f4d66..aaefa88c6 100644 --- a/tools/niminst/buildsh.tmpl +++ b/tools/niminst/buildsh.tmpl @@ -126,6 +126,8 @@ case $ucpu in mycpu="mips" ;; *arm*|*armv6l* ) mycpu="arm" ;; + *aarch64* ) + mycpu="arm64" ;; *) echo 2>&1 "Error: unknown processor: $ucpu" exit 1 |