1
Fork 0

i686-linux-android: increase CPU baseline to Pentium 4 (without an actual change)

This commit is contained in:
Ralf Jung 2025-02-11 20:37:01 +01:00
parent 8c61cd4df8
commit 9d8ffe47e7
2 changed files with 2 additions and 2 deletions

View file

@ -9,7 +9,7 @@ pub(crate) fn target() -> Target {
base.max_atomic_width = Some(64);
// https://developer.android.com/ndk/guides/abis.html#x86
base.cpu = "pentiumpro".into();
base.cpu = "pentium4".into();
base.features = "+mmx,+sse,+sse2,+sse3,+ssse3".into();
base.stack_probes = StackProbeType::Inline;