1
Fork 0

i686-unknown-hurd-gnu: bump baseline CPU to Pentium 4

This commit is contained in:
Ralf Jung 2025-02-07 18:49:22 +01:00
parent 64e06c0f55
commit 69c4bcf5c4
2 changed files with 2 additions and 2 deletions

View file

@ -2,7 +2,7 @@ use crate::spec::{Cc, LinkerFlavor, Lld, StackProbeType, Target, base};
pub(crate) fn target() -> Target {
let mut base = base::hurd_gnu::opts();
base.cpu = "pentiumpro".into();
base.cpu = "pentium4".into();
base.max_atomic_width = Some(64);
base.add_pre_link_args(LinkerFlavor::Gnu(Cc::Yes, Lld::No), &["-m32"]);
base.stack_probes = StackProbeType::Inline;