8 lines
249 B
Rust
8 lines
249 B
Rust
use crate::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)
|
|
}
|