Sign in
rust
/
rust
/
refs/heads/stable
/
.
/
compiler
/
rustc_target
/
src
/
spec
/
base
/
linux_gnu.rs
blob: e9135b43ebc1f38db2ee56f3bfc25e847a2fe13c [
file
] [
log
] [
blame
]
use
crate
::
spec
::{
TargetOptions
,
base
};
pub
(
crate
)
fn
opts
()
->
TargetOptions
{
TargetOptions
{
env
:
"gnu"
.
into
(),
..
base
::
linux
::
opts
()
}
}