1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-18 03:30:45 +00:00

bintools: disable relro/bindnow hardening on windows

This commit is contained in:
Weijia Wang 2024-01-06 15:30:24 +01:00
parent 8fcbe295cc
commit fda4c4e299

View file

@ -321,7 +321,7 @@ stdenv.mkDerivation {
hardening_unsupported_flags+=" pic"
''
+ optionalString targetPlatform.isAvr ''
+ optionalString (targetPlatform.isAvr || targetPlatform.isWindows) ''
hardening_unsupported_flags+=" relro bindnow"
''