We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3181754 + 57a38b0 commit 8cc8565Copy full SHA for 8cc8565
pkgs/development/compilers/llvm/common/llvm/default.nix
@@ -102,6 +102,10 @@ stdenv.mkDerivation (rec {
102
103
outputs = [ "out" "lib" "dev" "python" ];
104
105
+ hardeningDisable = [
106
+ "trivialautovarinit"
107
+ ];
108
+
109
nativeBuildInputs = [ cmake ]
110
++ (lib.optional (lib.versionAtLeast release_version "15") ninja)
111
++ [ python ]
@@ -535,6 +539,4 @@ stdenv.mkDerivation (rec {
535
539
check_version minor ${minor}
536
540
check_version patch ${patch}
537
541
'';
538
-} // lib.optionalAttrs (lib.versionOlder release_version "17" || lib.versionAtLeast release_version "18") {
- hardeningDisable = [ "trivialautovarinit" ];
542
})
0 commit comments