about summary refs log tree commit diff
path: root/compiler/rustc_target/src/spec/linux_gnu_base.rs
blob: 3d940ceaf0270b2ea8dec8f887af49aac850a480 (plain)
1
2
3
4
5
use crate::spec::TargetOptions;

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