3
0
Fork 0
forked from mirrors/nixpkgs

openssl: don’t separate debug info on useLLVM (#77780)

openssl: don’t separate debug info on useLLVM
This commit is contained in:
Jörg Thalheim 2020-01-16 10:42:50 +00:00 committed by GitHub
commit 68bcd4af59
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -36,7 +36,7 @@ let
outputs = [ "bin" "dev" "out" "man" ] ++ optional withDocs "doc";
setOutputFlags = false;
separateDebugInfo = stdenv.cc.isGNU;
separateDebugInfo = !(stdenv.hostPlatform.useLLVM or false) && stdenv.cc.isGNU;
nativeBuildInputs = [ perl ];
buildInputs = stdenv.lib.optional withCryptodev cryptodev;