Sign in
android
/
toolchain
/
rustc
/
43f0694b1feb1296004d84509e01177159e71be0
/
.
/
src
/
librustc_target
/
spec
/
i586_wrs_vxworks.rs
blob: 355250e6eca7f152fe03701c8dc8dd277cf9bf2c [
file
] [
log
] [
blame
]
use
crate
::
spec
::
TargetResult
;
pub
fn
target
()
->
TargetResult
{
let
mut
base
=
super
::
i686_wrs_vxworks
::
target
()?;
base
.
options
.
cpu
=
"pentium"
.
to_string
();
base
.
llvm_target
=
"i586-unknown-linux-gnu"
.
to_string
();
Ok
(
base
)
}