1
Fork 0
rust/compiler/rustc_target/src/spec/linux_uclibc_base.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

6 lines
140 B
Rust
Raw Normal View History

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