We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 9978dc8 + 6bb648f commit 6d15f28Copy full SHA for 6d15f28
src/librustc/back/link.rs
@@ -1025,10 +1025,10 @@ fn link_args(cmd: &mut Command,
1025
cmd.arg("-Wl,--nxcompat");
1026
1027
// Mark all dynamic libraries and executables as compatible with ASLR
1028
- // FIXME #17098: ASLR breaks gdb
1029
- if sess.opts.debuginfo == NoDebugInfo {
1030
- cmd.arg("-Wl,--dynamicbase");
1031
- }
+ // FIXME #16514: ASLR is disabled on Windows due to MinGW-w64 bugs:
+ // FIXME #17098: ASLR breaks gdb on Windows
+ // FIXME #17684: ASLR breaks thread-local storage on Windows
+ //cmd.arg("-Wl,--dynamicbase");
1032
1033
// Mark all dynamic libraries and executables as compatible with the larger 4GiB address
1034
// space available to x86 Windows binaries on x86_64.
0 commit comments