mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-20 00:53:12 +03:00
go: don't assume sse2 on i686 (maybe fixes build)
This commit is contained in:
parent
28d992bf6d
commit
a78f47917a
@ -60,6 +60,7 @@ stdenv.mkDerivation {
|
||||
else if stdenv.system == "armv5tel-linux" then "arm"
|
||||
else throw "Unsupported system";
|
||||
GOARM = stdenv.lib.optionalString (stdenv.system == "armv5tel-linux") "5";
|
||||
GO386 = 387; # from Arch: don't assume sse2 on i686
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p "$out/bin"
|
||||
|
Loading…
Reference in New Issue
Block a user