blob: 2b95523d6f7b5ed4dbe609731f15416cb1980f59 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
use crate::spec::{RelroLevel, TargetOptions};
pub fn opts() -> TargetOptions {
TargetOptions {
os: "haiku".to_string(),
dynamic_linking: true,
executables: true,
families: vec!["unix".to_string()],
relro_level: RelroLevel::Full,
..Default::default()
}
}
|