1use crate::spec::Target; 2 3pub(crate) fn target() -> Target { 4 let mut base = super::i686_unknown_linux_gnu::target(); 5 base.rustc_abi = None; // overwrite the SSE2 ABI set by the base target 6 base.cpu = "pentium".into(); 7 base.llvm_target = "i586-unknown-linux-gnu".into(); 8 base 9}