openssl: don’t separate debug info on useLLVM

fixes #77779
This commit is contained in:
Matthew Bauer 2020-01-15 13:16:10 -05:00
parent 00a2084a40
commit f23ad86d6f

@ -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;