Skip to content

Commit

Permalink
Add arm/arm64 for FreeBSD (#13822)
Browse files Browse the repository at this point in the history
* Add arm and arm64 for FreeBSD

* Add arm64 with aarch64 and reorder to avoid conflict with arm
  • Loading branch information
lbartoletti authored Mar 31, 2020
1 parent 9ffec79 commit 567af54
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion compiler/installer.ini
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Platforms: """
linux: i386;hppa;ia64;alpha;amd64;powerpc64;arm;sparc;sparc64;m68k;mips;mipsel;mips64;mips64el;powerpc;powerpc64el;arm64;riscv64
macosx: i386;amd64;powerpc64
solaris: i386;amd64;sparc;sparc64
freebsd: i386;amd64;powerpc64
freebsd: i386;amd64;powerpc64;arm;arm64
netbsd: i386;amd64
openbsd: i386;amd64
dragonfly: i386;amd64
Expand Down
4 changes: 2 additions & 2 deletions tools/niminst/buildsh.nimf
Original file line number Diff line number Diff line change
Expand Up @@ -180,10 +180,10 @@ case $ucpu in
;;
*alpha* )
mycpu="alpha" ;;
*aarch64*|*arm64* )
mycpu="arm64" ;;
*arm*|*armv6l*|*armv71* )
mycpu="arm" ;;
*aarch64* )
mycpu="arm64" ;;
*riscv64* )
mycpu="riscv64" ;;
*)
Expand Down

0 comments on commit 567af54

Please sign in to comment.