summaryrefslogtreecommitdiffstats
path: root/compiler/rustc_target/src/spec/linux_gnu_base.rs
blob: 8d6b3f185122ca584adb62dc8cecdc0998491abd (plain)
1
2
3
4
5
use crate::spec::TargetOptions;

pub fn opts() -> TargetOptions {
    TargetOptions { env: "gnu".into(), ..super::linux_base::opts() }
}