boringssl: fix aarch64-linux build
This commit is contained in:
parent
931260043e
commit
a9e51112e8
@ -15,6 +15,9 @@ stdenv.mkDerivation {
|
|||||||
|
|
||||||
makeFlags = [ "GOCACHE=$(TMPDIR)/go-cache" ];
|
makeFlags = [ "GOCACHE=$(TMPDIR)/go-cache" ];
|
||||||
|
|
||||||
|
# CMAKE_OSX_ARCHITECTURES is set to x86_64 by Nix, but it confuses boringssl on aarch64-linux.
|
||||||
|
cmakeFlags = lib.optionals (stdenv.isLinux) [ "-DCMAKE_OSX_ARCHITECTURES=" ];
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
mkdir -p $bin/bin $out/include $out/lib
|
mkdir -p $bin/bin $out/include $out/lib
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user