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