mingw-w64: Disable stack hardening of the runtime

Do this because it is built with the static stage
This commit is contained in:
Bojan Nikolic 2017-12-29 14:29:05 +00:00 committed by John Ericson
parent 2365e2ffcd
commit 2e0ebc0532

View file

@ -4,4 +4,5 @@ stdenv.mkDerivation {
inherit (callPackage ./common.nix {}) name src;
buildInputs = [ windows.mingw_w64_headers ];
dontStrip = true;
hardeningDisable = [ "stackprotector" "fortify" ];
}