summaryrefslogtreecommitdiffstats
path: root/compiler/rustc_target/src/spec/l4re_base.rs
blob: 3a4d83fad175102425f9a6579b49ecc8d50d8b4e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use crate::spec::{cvs, Cc, LinkerFlavor, PanicStrategy, RelocModel, TargetOptions};

pub fn opts() -> TargetOptions {
    TargetOptions {
        os: "l4re".into(),
        env: "uclibc".into(),
        linker_flavor: LinkerFlavor::Unix(Cc::No),
        panic_strategy: PanicStrategy::Abort,
        linker: Some("l4-bender".into()),
        families: cvs!["unix"],
        relocation_model: RelocModel::Static,
        ..Default::default()
    }
}