We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a5dfdc5 commit 42d652eCopy full SHA for 42d652e
src/librustc_target/spec/x86_64_unknown_linux_gnux32.rs
@@ -5,7 +5,8 @@ pub fn target() -> TargetResult {
5
base.cpu = "x86-64".to_string();
6
base.max_atomic_width = Some(64);
7
base.pre_link_args.get_mut(&LinkerFlavor::Gcc).unwrap().push("-mx32".to_string());
8
- base.stack_probes = true;
+ // BUG: temporarily workaround #59674
9
+ base.stack_probes = false;
10
base.has_elf_tls = false;
11
// BUG(GabrielMajeri): disabling the PLT on x86_64 Linux with x32 ABI
12
// breaks code gen. See LLVM bug 36743
0 commit comments