blob: 355250e6eca7f152fe03701c8dc8dd277cf9bf2c [file] [log] [blame]
use crate::spec::TargetResult;
pub fn target() -> TargetResult {
let mut base = super::i686_wrs_vxworks::target()?;
base.options.cpu = "pentium".to_string();
base.llvm_target = "i586-unknown-linux-gnu".to_string();
Ok(base)
}