mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-14 02:49:40 +00:00
12 lines
272 B
Rust
12 lines
272 B
Rust
use crate::spec::{cvs, RelroLevel, TargetOptions};
|
|
|
|
pub fn opts() -> TargetOptions {
|
|
TargetOptions {
|
|
os: "haiku".into(),
|
|
dynamic_linking: true,
|
|
families: cvs!["unix"],
|
|
relro_level: RelroLevel::Full,
|
|
..Default::default()
|
|
}
|
|
}
|