
Construction of a built-in target is always infallible now, so `TargetResult` is no longer necessary.
8 lines
232 B
Rust
8 lines
232 B
Rust
use crate::spec::Target;
|
|
|
|
pub fn target() -> Target {
|
|
let mut base = super::i686_unknown_linux_gnu::target();
|
|
base.options.cpu = "pentium".to_string();
|
|
base.llvm_target = "i586-unknown-linux-gnu".to_string();
|
|
base
|
|
}
|