blob: 76f6a4eba389f36344f0223993fc62d066ae387f (
plain)
1
2
3
4
5
6
7
8
|
use spec::TargetResult;
pub fn target() -> TargetResult {
let mut base = super::i686_unknown_linux_gnu::target()?;
base.options.cpu = "pentium".to_string();
base.llvm_target = "i586-unknown-linux-gnu".to_string();
Ok(base)
}
|