mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-02 00:07:42 +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() }
|
|
}
|