summaryrefslogtreecommitdiffstats
path: root/src/bootstrap/cc_detect.rs
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-06-07 05:48:48 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-06-07 05:48:48 +0000
commitef24de24a82fe681581cc130f342363c47c0969a (patch)
tree0d494f7e1a38b95c92426f58fe6eaa877303a86c /src/bootstrap/cc_detect.rs
parentReleasing progress-linux version 1.74.1+dfsg1-1~progress7.99u1. (diff)
downloadrustc-ef24de24a82fe681581cc130f342363c47c0969a.tar.xz
rustc-ef24de24a82fe681581cc130f342363c47c0969a.zip
Merging upstream version 1.75.0+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/bootstrap/cc_detect.rs')
-rw-r--r--src/bootstrap/cc_detect.rs273
1 files changed, 0 insertions, 273 deletions
diff --git a/src/bootstrap/cc_detect.rs b/src/bootstrap/cc_detect.rs
deleted file mode 100644
index 2496c2a9d..000000000
--- a/src/bootstrap/cc_detect.rs
+++ /dev/null
@@ -1,273 +0,0 @@
-//! C-compiler probing and detection.
-//!
-//! This module will fill out the `cc` and `cxx` maps of `Build` by looking for
-//! C and C++ compilers for each target configured. A compiler is found through
-//! a number of vectors (in order of precedence)
-//!
-//! 1. Configuration via `target.$target.cc` in `config.toml`.
-//! 2. Configuration via `target.$target.android-ndk` in `config.toml`, if
-//! applicable
-//! 3. Special logic to probe on OpenBSD
-//! 4. The `CC_$target` environment variable.
-//! 5. The `CC` environment variable.
-//! 6. "cc"
-//!
-//! Some of this logic is implemented here, but much of it is farmed out to the
-//! `cc` crate itself, so we end up having the same fallbacks as there.
-//! Similar logic is then used to find a C++ compiler, just some s/cc/c++/ is
-//! used.
-//!
-//! It is intended that after this module has run no C/C++ compiler will
-//! ever be probed for. Instead the compilers found here will be used for
-//! everything.
-
-use std::collections::HashSet;
-use std::path::{Path, PathBuf};
-use std::process::Command;
-use std::{env, iter};
-
-use crate::config::{Target, TargetSelection};
-use crate::util::output;
-use crate::{Build, CLang, GitRepo};
-
-// The `cc` crate doesn't provide a way to obtain a path to the detected archiver,
-// so use some simplified logic here. First we respect the environment variable `AR`, then
-// try to infer the archiver path from the C compiler path.
-// In the future this logic should be replaced by calling into the `cc` crate.
-fn cc2ar(cc: &Path, target: TargetSelection) -> Option<PathBuf> {
- if let Some(ar) = env::var_os(format!("AR_{}", target.triple.replace("-", "_"))) {
- Some(PathBuf::from(ar))
- } else if let Some(ar) = env::var_os("AR") {
- Some(PathBuf::from(ar))
- } else if target.contains("msvc") {
- None
- } else if target.contains("musl") {
- Some(PathBuf::from("ar"))
- } else if target.contains("openbsd") {
- Some(PathBuf::from("ar"))
- } else if target.contains("vxworks") {
- Some(PathBuf::from("wr-ar"))
- } else if target.contains("android") {
- Some(cc.parent().unwrap().join(PathBuf::from("llvm-ar")))
- } else {
- let parent = cc.parent().unwrap();
- let file = cc.file_name().unwrap().to_str().unwrap();
- for suffix in &["gcc", "cc", "clang"] {
- if let Some(idx) = file.rfind(suffix) {
- let mut file = file[..idx].to_owned();
- file.push_str("ar");
- return Some(parent.join(&file));
- }
- }
- Some(parent.join(file))
- }
-}
-
-fn new_cc_build(build: &Build, target: TargetSelection) -> cc::Build {
- let mut cfg = cc::Build::new();
- cfg.cargo_metadata(false)
- .opt_level(2)
- .warnings(false)
- .debug(false)
- // Compress debuginfo
- .flag_if_supported("-gz")
- .target(&target.triple)
- .host(&build.build.triple);
- match build.crt_static(target) {
- Some(a) => {
- cfg.static_crt(a);
- }
- None => {
- if target.contains("msvc") {
- cfg.static_crt(true);
- }
- if target.contains("musl") {
- cfg.static_flag(true);
- }
- }
- }
- cfg
-}
-
-pub fn find(build: &Build) {
- // For all targets we're going to need a C compiler for building some shims
- // and such as well as for being a linker for Rust code.
- let targets = build
- .targets
- .iter()
- .chain(&build.hosts)
- .cloned()
- .chain(iter::once(build.build))
- .collect::<HashSet<_>>();
- for target in targets.into_iter() {
- find_target(build, target);
- }
-}
-
-pub fn find_target(build: &Build, target: TargetSelection) {
- let mut cfg = new_cc_build(build, target);
- let config = build.config.target_config.get(&target);
- if let Some(cc) = config.and_then(|c| c.cc.as_ref()) {
- cfg.compiler(cc);
- } else {
- set_compiler(&mut cfg, Language::C, target, config, build);
- }
-
- let compiler = cfg.get_compiler();
- let ar = if let ar @ Some(..) = config.and_then(|c| c.ar.clone()) {
- ar
- } else {
- cc2ar(compiler.path(), target)
- };
-
- build.cc.borrow_mut().insert(target, compiler.clone());
- let cflags = build.cflags(target, GitRepo::Rustc, CLang::C);
-
- // If we use llvm-libunwind, we will need a C++ compiler as well for all targets
- // We'll need one anyways if the target triple is also a host triple
- let mut cfg = new_cc_build(build, target);
- cfg.cpp(true);
- let cxx_configured = if let Some(cxx) = config.and_then(|c| c.cxx.as_ref()) {
- cfg.compiler(cxx);
- true
- } else if build.hosts.contains(&target) || build.build == target {
- set_compiler(&mut cfg, Language::CPlusPlus, target, config, build);
- true
- } else {
- // Use an auto-detected compiler (or one configured via `CXX_target_triple` env vars).
- cfg.try_get_compiler().is_ok()
- };
-
- // for VxWorks, record CXX compiler which will be used in lib.rs:linker()
- if cxx_configured || target.contains("vxworks") {
- let compiler = cfg.get_compiler();
- build.cxx.borrow_mut().insert(target, compiler);
- }
-
- build.verbose(&format!("CC_{} = {:?}", &target.triple, build.cc(target)));
- build.verbose(&format!("CFLAGS_{} = {:?}", &target.triple, cflags));
- if let Ok(cxx) = build.cxx(target) {
- let cxxflags = build.cflags(target, GitRepo::Rustc, CLang::Cxx);
- build.verbose(&format!("CXX_{} = {:?}", &target.triple, cxx));
- build.verbose(&format!("CXXFLAGS_{} = {:?}", &target.triple, cxxflags));
- }
- if let Some(ar) = ar {
- build.verbose(&format!("AR_{} = {:?}", &target.triple, ar));
- build.ar.borrow_mut().insert(target, ar);
- }
-
- if let Some(ranlib) = config.and_then(|c| c.ranlib.clone()) {
- build.ranlib.borrow_mut().insert(target, ranlib);
- }
-}
-
-fn set_compiler(
- cfg: &mut cc::Build,
- compiler: Language,
- target: TargetSelection,
- config: Option<&Target>,
- build: &Build,
-) {
- match &*target.triple {
- // When compiling for android we may have the NDK configured in the
- // config.toml in which case we look there. Otherwise the default
- // compiler already takes into account the triple in question.
- t if t.contains("android") => {
- if let Some(ndk) = config.and_then(|c| c.ndk.as_ref()) {
- cfg.compiler(ndk_compiler(compiler, &*target.triple, ndk));
- }
- }
-
- // The default gcc version from OpenBSD may be too old, try using egcc,
- // which is a gcc version from ports, if this is the case.
- t if t.contains("openbsd") => {
- let c = cfg.get_compiler();
- let gnu_compiler = compiler.gcc();
- if !c.path().ends_with(gnu_compiler) {
- return;
- }
-
- let output = output(c.to_command().arg("--version"));
- let i = match output.find(" 4.") {
- Some(i) => i,
- None => return,
- };
- match output[i + 3..].chars().next().unwrap() {
- '0'..='6' => {}
- _ => return,
- }
- let alternative = format!("e{gnu_compiler}");
- if Command::new(&alternative).output().is_ok() {
- cfg.compiler(alternative);
- }
- }
-
- "mips-unknown-linux-musl" => {
- if cfg.get_compiler().path().to_str() == Some("gcc") {
- cfg.compiler("mips-linux-musl-gcc");
- }
- }
- "mipsel-unknown-linux-musl" => {
- if cfg.get_compiler().path().to_str() == Some("gcc") {
- cfg.compiler("mipsel-linux-musl-gcc");
- }
- }
-
- t if t.contains("musl") => {
- if let Some(root) = build.musl_root(target) {
- let guess = root.join("bin/musl-gcc");
- if guess.exists() {
- cfg.compiler(guess);
- }
- }
- }
-
- _ => {}
- }
-}
-
-pub(crate) fn ndk_compiler(compiler: Language, triple: &str, ndk: &Path) -> PathBuf {
- let mut triple_iter = triple.split("-");
- let triple_translated = if let Some(arch) = triple_iter.next() {
- let arch_new = match arch {
- "arm" | "armv7" | "armv7neon" | "thumbv7" | "thumbv7neon" => "armv7a",
- other => other,
- };
- std::iter::once(arch_new).chain(triple_iter).collect::<Vec<&str>>().join("-")
- } else {
- triple.to_string()
- };
-
- // API 19 is the earliest API level supported by NDK r25b but AArch64 and x86_64 support
- // begins at API level 21.
- let api_level =
- if triple.contains("aarch64") || triple.contains("x86_64") { "21" } else { "19" };
- let compiler = format!("{}{}-{}", triple_translated, api_level, compiler.clang());
- ndk.join("bin").join(compiler)
-}
-
-/// The target programming language for a native compiler.
-pub(crate) enum Language {
- /// The compiler is targeting C.
- C,
- /// The compiler is targeting C++.
- CPlusPlus,
-}
-
-impl Language {
- /// Obtains the name of a compiler in the GCC collection.
- fn gcc(self) -> &'static str {
- match self {
- Language::C => "gcc",
- Language::CPlusPlus => "g++",
- }
- }
-
- /// Obtains the name of a compiler in the clang suite.
- fn clang(self) -> &'static str {
- match self {
- Language::C => "clang",
- Language::CPlusPlus => "clang++",
- }
- }
-}