mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-01 07:13:24 +03:00
6 lines
142 B
Rust
6 lines
142 B
Rust
use crate::spec::TargetOptions;
|
|
|
|
pub fn opts() -> TargetOptions {
|
|
TargetOptions { env: "gnu".to_string(), ..super::linux_base::opts() }
|
|
}
|