blob: 801a88933994a830f914276b0503958fe3489a8f [file] [log] [blame]
use crate::spec::Target;
pub fn target() -> Target {
let mut base = super::i686_unknown_linux_gnu::target();
base.cpu = "i386".into();
base.llvm_target = "i386-unknown-linux-gnu".into();
base
}