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

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