blob: bcb536b37a17e35f5314e7575f971905f23181ab [file] [log] [blame]
use crate::spec::{RelroLevel, TargetOptions};
pub fn opts() -> TargetOptions {
TargetOptions {
os: "redox".to_string(),
env: "relibc".to_string(),
dynamic_linking: true,
executables: true,
families: vec!["unix".to_string()],
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()
}
}