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