Files
rust/compiler/rustc_target/src/spec/redox_base.rs
Vadim Petrochenkov 8d9fdb778e rustc_target: Flip the default for TargetOptions::executables to true
Also change `executables` to true for linux-kernel and windows-uwp-gnu targets
2022-07-11 23:23:51 +03:00

18 lines
477 B
Rust

use crate::spec::{cvs, RelroLevel, TargetOptions};
pub fn opts() -> TargetOptions {
TargetOptions {
os: "redox".into(),
env: "relibc".into(),
dynamic_linking: true,
families: cvs!["unix"],
has_rpath: true,
position_independent_executables: true,
relro_level: RelroLevel::Full,
has_thread_local: true,
crt_static_default: true,
crt_static_respected: true,
..Default::default()
}
}