enable DEP (NX bit) for 32-bit Windows executables

This is already enabled by default for x86_64 executables on Windows,
but it needs to be manually enabled on x86.

Closes #16533
This commit is contained in:
Daniel Micay 2014-08-16 05:05:57 -04:00
parent cafa47506d
commit d3c71a5890

View File

@ -1472,6 +1472,9 @@ fn link_args(cmd: &mut Command,
// [1] - https://sourceware.org/bugzilla/show_bug.cgi?id=13130
// [2] - https://code.google.com/p/go/issues/detail?id=2139
cmd.arg("-Wl,--enable-long-section-names");
// Always enable DEP (NX bit) when it is available
cmd.arg("-Wl,--nxcompat");
}
if sess.targ_cfg.os == abi::OsAndroid {