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

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