blob: f04e3c2c2a5b0e3e08f6238de72e3d235ff04cdf (
plain)
1
2
3
4
5
6
7
8
9
|
use crate::spec::Target;
pub(crate) fn target() -> Target {
let mut base = super::i686_unknown_linux_gnu::target();
base.rustc_abi = None; // overwrite the SSE2 ABI set by the base target
base.cpu = "pentium".into();
base.llvm_target = "i586-unknown-linux-gnu".into();
base
}
|