rustc_target/spec/targets/
i586_unknown_linux_gnu.rs

1use crate::spec::Target;
2
3pub(crate) fn target() -> Target {
4    let mut base = super::i686_unknown_linux_gnu::target();
5    base.rustc_abi = None; // overwrite the SSE2 ABI set by the base target
6    base.cpu = "pentium".into();
7    base.llvm_target = "i586-unknown-linux-gnu".into();
8    base.metadata = crate::spec::TargetMetadata {
9        description: Some("32-bit Linux (kernel 3.2, glibc 2.17+)".into()),
10        tier: Some(2),
11        host_tools: Some(false),
12        std: Some(true),
13    };
14    base
15}