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:
commit
68bcd4af59
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue