]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_target/src/spec/l4re_base.rs
Rollup merge of #82497 - jyn514:json, r=CraftSpider
[rust.git] / compiler / rustc_target / src / spec / l4re_base.rs
1 use crate::spec::{LinkerFlavor, PanicStrategy, TargetOptions};
2 //use std::process::Command;
3
4 // Use GCC to locate code for crt* libraries from the host, not from L4Re. Note
5 // that a few files also come from L4Re, for these, the function shouldn't be
6 // used. This uses GCC for the location of the file, but GCC is required for L4Re anyway.
7 //fn get_path_or(filename: &str) -> String {
8 //    let child = Command::new("gcc")
9 //        .arg(format!("-print-file-name={}", filename)).output()
10 //        .expect("Failed to execute GCC");
11 //    String::from_utf8(child.stdout)
12 //        .expect("Couldn't read path from GCC").trim().into()
13 //}
14
15 pub fn opts() -> TargetOptions {
16     TargetOptions {
17         os: "l4re".to_string(),
18         env: "uclibc".to_string(),
19         linker_flavor: LinkerFlavor::Ld,
20         executables: true,
21         panic_strategy: PanicStrategy::Abort,
22         linker: Some("ld".to_string()),
23         os_family: Some("unix".to_string()),
24         ..Default::default()
25     }
26 }