2020-10-05 15:37:55 +03:00
|
|
|
use crate::spec::Target;
|
2016-02-13 17:03:00 +01:00
|
|
|
|
2020-10-05 15:37:55 +03:00
|
|
|
pub fn target() -> Target {
|
|
|
|
let mut base = super::i686_unknown_linux_gnu::target();
|
2016-03-03 17:23:00 -08:00
|
|
|
base.options.cpu = "pentium".to_string();
|
|
|
|
base.llvm_target = "i586-unknown-linux-gnu".to_string();
|
2020-10-05 15:37:55 +03:00
|
|
|
base
|
2016-02-13 17:03:00 +01:00
|
|
|
}
|