mingw-w64: disable stackclashprotection hardening flag

This commit is contained in:
Robert Scott 2024-06-03 20:26:00 +01:00
parent 0e49cbda2e
commit d7ee5936f4

View File

@ -29,7 +29,7 @@ in stdenv.mkDerivation {
nativeBuildInputs = [ autoreconfHook ];
buildInputs = [ windows.mingw_w64_headers ];
hardeningDisable = [ "stackprotector" "fortify" ];
hardeningDisable = [ "stackprotector" "stackclashprotection" "fortify" ];
meta = {
platforms = lib.platforms.windows;