Skip to content

Commit 6d15f28

Browse files
committedOct 6, 2014
auto merge of #17809 : thestinger/rust/windows, r=eddyb
2 parents 9978dc8 + 6bb648f commit 6d15f28

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed
 

‎src/librustc/back/link.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -1025,10 +1025,10 @@ fn link_args(cmd: &mut Command,
10251025
cmd.arg("-Wl,--nxcompat");
10261026

10271027
// 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-
}
1028+
// FIXME #16514: ASLR is disabled on Windows due to MinGW-w64 bugs:
1029+
// FIXME #17098: ASLR breaks gdb on Windows
1030+
// FIXME #17684: ASLR breaks thread-local storage on Windows
1031+
//cmd.arg("-Wl,--dynamicbase");
10321032

10331033
// Mark all dynamic libraries and executables as compatible with the larger 4GiB address
10341034
// space available to x86 Windows binaries on x86_64.

0 commit comments

Comments
 (0)
Please sign in to comment.