blob: 7c92dda8a9df75d7e138dcbb80ae93d08ac53828 [file] [log] [blame]
use crate::spec::Target;
pub fn target() -> Target {
let mut base = super::i686_unknown_linux_gnu::target();
base.cpu = "pentium".to_string();
base.llvm_target = "i586-unknown-linux-gnu".to_string();
base
}