mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-18 09:06:27 +00:00
12 lines
518 B
Diff
12 lines
518 B
Diff
--- a/compiler/rustc_target/src/spec/i686_unknown_linux_gnu.rs
|
|
+++ b/compiler/rustc_target/src/spec/i686_unknown_linux_gnu.rs
|
|
@@ -2,7 +2,7 @@
|
|
|
|
pub fn target() -> Target {
|
|
let mut base = super::linux_gnu_base::opts();
|
|
- base.cpu = "pentium4".to_string();
|
|
+ base.cpu = "pentiumpro".to_string();
|
|
base.max_atomic_width = Some(64);
|
|
base.pre_link_args.get_mut(&LinkerFlavor::Gcc).unwrap().push("-m32".to_string());
|
|
// don't use probe-stack=inline-asm until rust#83139 and rust#84667 are resolved
|