rustc_target/spec/targets/
i586_unknown_linux_musl.rs

1use crate::spec::Target;
2
3pub(crate) fn target() -> Target {
4    let mut base = super::i686_unknown_linux_musl::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-musl".into();
8    // FIXME(compiler-team#422): musl targets should be dynamically linked by default.
9    base.crt_static_default = true;
10    base
11}