summary refs log tree commit diff
path: root/src/librustc_target/spec/i586_unknown_linux_gnu.rs
blob: 49f4f2cb6b999c3e595ffc54dc50836d85548cd6 (plain)
1
2
3
4
5
6
7
8
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)
}