Skip to content

Commit

Permalink
go: declare support for aarch64
Browse files Browse the repository at this point in the history
  • Loading branch information
orivej committed Oct 1, 2017
1 parent 2784bd7 commit 8d4b0ee
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions pkgs/development/compilers/go/1.9.nix
Expand Up @@ -141,6 +141,7 @@ stdenv.mkDerivation rec {
else if stdenv.system == "i686-linux" then "386"
else if stdenv.system == "x86_64-linux" then "amd64"
else if stdenv.isArm then "arm"
else if stdenv.isAarch64 then "arm64"
else throw "Unsupported system";
GOARM = optionalString (stdenv.system == "armv5tel-linux") "5";
GO386 = 387; # from Arch: don't assume sse2 on i686
Expand Down

0 comments on commit 8d4b0ee

Please sign in to comment.