1
Fork 0

Change CPU target back to pentiumpro

This commit is contained in:
Jeremy Soller 2025-02-10 09:09:56 -07:00 committed by GitHub
parent ea54b5e244
commit b8e135a79f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

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