Skip to content

Commit

Permalink
Revert "Disable stack probing for gnux32."
Browse files Browse the repository at this point in the history
This reverts commit 42d652e.
  • Loading branch information
crlf0710 committed Jul 19, 2019
1 parent 527dce7 commit 10d4159
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/librustc_target/spec/x86_64_unknown_linux_gnux32.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@ pub fn target() -> TargetResult {
base.cpu = "x86-64".to_string();
base.max_atomic_width = Some(64);
base.pre_link_args.get_mut(&LinkerFlavor::Gcc).unwrap().push("-mx32".to_string());
// BUG: temporarily workaround #59674
base.stack_probes = false;
base.stack_probes = true;
base.has_elf_tls = false;
// BUG(GabrielMajeri): disabling the PLT on x86_64 Linux with x32 ABI
// breaks code gen. See LLVM bug 36743
Expand Down

0 comments on commit 10d4159

Please sign in to comment.