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