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

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;