[go: up one dir, main page]

cc/
lib.rs

1//! A library for [Cargo build scripts](https://doc.rust-lang.org/cargo/reference/build-scripts.html)
2//! to compile a set of C/C++/assembly/CUDA files into a static archive for Cargo
3//! to link into the crate being built. This crate does not compile code itself;
4//! it calls out to the default compiler for the platform. This crate will
5//! automatically detect situations such as cross compilation and
6//! [various environment variables](#external-configuration-via-environment-variables) and will build code appropriately.
7//!
8//! # Example
9//!
10//! First, you'll want to both add a build script for your crate (`build.rs`) and
11//! also add this crate to your `Cargo.toml` via:
12//!
13//! ```toml
14//! [build-dependencies]
15//! cc = "1.0"
16//! ```
17//!
18//! Next up, you'll want to write a build script like so:
19//!
20//! ```rust,no_run
21//! // build.rs
22//! cc::Build::new()
23//!     .file("foo.c")
24//!     .file("bar.c")
25//!     .compile("foo");
26//! ```
27//!
28//! And that's it! Running `cargo build` should take care of the rest and your Rust
29//! application will now have the C files `foo.c` and `bar.c` compiled into a file
30//! named `libfoo.a`. If the C files contain
31//!
32//! ```c
33//! void foo_function(void) { ... }
34//! ```
35//!
36//! and
37//!
38//! ```c
39//! int32_t bar_function(int32_t x) { ... }
40//! ```
41//!
42//! you can call them from Rust by declaring them in
43//! your Rust code like so:
44//!
45//! ```rust,no_run
46//! extern "C" {
47//!     fn foo_function();
48//!     fn bar_function(x: i32) -> i32;
49//! }
50//!
51//! pub fn call() {
52//!     unsafe {
53//!         foo_function();
54//!         bar_function(42);
55//!     }
56//! }
57//!
58//! fn main() {
59//!     call();
60//! }
61//! ```
62//!
63//! See [the Rustonomicon](https://doc.rust-lang.org/nomicon/ffi.html) for more details.
64//!
65//! # External configuration via environment variables
66//!
67//! To control the programs and flags used for building, the builder can set a
68//! number of different environment variables.
69//!
70//! * `CFLAGS` - a series of space separated flags passed to compilers. Note that
71//!   individual flags cannot currently contain spaces, so doing
72//!   something like: `-L=foo\ bar` is not possible.
73//! * `CC` - the actual C compiler used. Note that this is used as an exact
74//!   executable name, so (for example) no extra flags can be passed inside
75//!   this variable, and the builder must ensure that there aren't any
76//!   trailing spaces. This compiler must understand the `-c` flag. For
77//!   certain `TARGET`s, it also is assumed to know about other flags (most
78//!   common is `-fPIC`).
79//!   ccache, distcc, sccache, icecc, cachepot and buildcache are supported,
80//!   for sccache, simply set `CC` to `sccache cc`.
81//!   For other custom `CC` wrapper, just set `CC_KNOWN_WRAPPER_CUSTOM`
82//!   to the custom wrapper used in `CC`.
83//! * `AR` - the `ar` (archiver) executable to use to build the static library.
84//! * `CRATE_CC_NO_DEFAULTS` - the default compiler flags may cause conflicts in
85//!   some cross compiling scenarios. Setting this variable
86//!   will disable the generation of default compiler
87//!   flags.
88//! * `CC_ENABLE_DEBUG_OUTPUT` - if set, compiler command invocations and exit codes will
89//!   be logged to stdout. This is useful for debugging build script issues, but can be
90//!   overly verbose for normal use.
91//! * `CC_SHELL_ESCAPED_FLAGS` - if set, `*FLAGS` will be parsed as if they were shell
92//!   arguments (similar to `make` and `cmake`) rather than splitting them on each space.
93//!   For example, with `CFLAGS='a "b c"'`, the compiler will be invoked with 2 arguments -
94//!   `a` and `b c` - rather than 3: `a`, `"b` and `c"`.
95//! * `CXX...` - see [C++ Support](#c-support).
96//! * `CC_FORCE_DISABLE` - If set, `cc` will never run any [`Command`]s, and methods that
97//!   would return an [`Error`]. This is intended for use by third-party build systems
98//!   which want to be absolutely sure that they are in control of building all
99//!   dependencies. Note that operations that return [`Tool`]s such as
100//!   [`Build::get_compiler`] may produce less accurate results as in some cases `cc` runs
101//!   commands in order to locate compilers. Additionally, this does nothing to prevent
102//!   users from running [`Tool::to_command`] and executing the [`Command`] themselves.
103//! * `RUSTC_WRAPPER` - If set, the specified command will be prefixed to the compiler
104//!   command. This is useful for projects that want to use
105//!   [sccache](https://github.com/mozilla/sccache),
106//!   [buildcache](https://gitlab.com/bits-n-bites/buildcache), or
107//!   [cachepot](https://github.com/paritytech/cachepot).
108//!
109//! Furthermore, projects using this crate may specify custom environment variables
110//! to be inspected, for example via the `Build::try_flags_from_environment`
111//! function. Consult the project’s own documentation or its use of the `cc` crate
112//! for any additional variables it may use.
113//!
114//! Each of these variables can also be supplied with certain prefixes and suffixes,
115//! in the following prioritized order:
116//!
117//!   1. `<var>_<target>` - for example, `CC_x86_64-unknown-linux-gnu`
118//!   2. `<var>_<target_with_underscores>` - for example, `CC_x86_64_unknown_linux_gnu`
119//!   3. `<build-kind>_<var>` - for example, `HOST_CC` or `TARGET_CFLAGS`
120//!   4. `<var>` - a plain `CC`, `AR` as above.
121//!
122//! If none of these variables exist, cc-rs uses built-in defaults.
123//!
124//! In addition to the above optional environment variables, `cc-rs` has some
125//! functions with hard requirements on some variables supplied by [cargo's
126//! build-script driver][cargo] that it has the `TARGET`, `OUT_DIR`, `OPT_LEVEL`,
127//! and `HOST` variables.
128//!
129//! [cargo]: https://doc.rust-lang.org/cargo/reference/build-scripts.html#inputs-to-the-build-script
130//!
131//! # Optional features
132//!
133//! ## Parallel
134//!
135//! Currently cc-rs supports parallel compilation (think `make -jN`) but this
136//! feature is turned off by default. To enable cc-rs to compile C/C++ in parallel,
137//! you can change your dependency to:
138//!
139//! ```toml
140//! [build-dependencies]
141//! cc = { version = "1.0", features = ["parallel"] }
142//! ```
143//!
144//! By default cc-rs will limit parallelism to `$NUM_JOBS`, or if not present it
145//! will limit it to the number of cpus on the machine. If you are using cargo,
146//! use `-jN` option of `build`, `test` and `run` commands as `$NUM_JOBS`
147//! is supplied by cargo.
148//!
149//! # Compile-time Requirements
150//!
151//! To work properly this crate needs access to a C compiler when the build script
152//! is being run. This crate does not ship a C compiler with it. The compiler
153//! required varies per platform, but there are three broad categories:
154//!
155//! * Unix platforms require `cc` to be the C compiler. This can be found by
156//!   installing cc/clang on Linux distributions and Xcode on macOS, for example.
157//! * Windows platforms targeting MSVC (e.g. your target name ends in `-msvc`)
158//!   require Visual Studio to be installed. `cc-rs` attempts to locate it, and
159//!   if it fails, `cl.exe` is expected to be available in `PATH`. This can be
160//!   set up by running the appropriate developer tools shell.
161//! * Windows platforms targeting MinGW (e.g. your target name ends in `-gnu`)
162//!   require `cc` to be available in `PATH`. We recommend the
163//!   [MinGW-w64](https://www.mingw-w64.org/) distribution.
164//!   You may also acquire it via
165//!   [MSYS2](https://www.msys2.org/), as explained [here][msys2-help].  Make sure
166//!   to install the appropriate architecture corresponding to your installation of
167//!   rustc. GCC from older [MinGW](http://www.mingw.org/) project is compatible
168//!   only with 32-bit rust compiler.
169//!
170//! [msys2-help]: https://github.com/rust-lang/rust/blob/master/INSTALL.md#building-on-windows
171//!
172//! # C++ support
173//!
174//! `cc-rs` supports C++ libraries compilation by using the `cpp` method on
175//! `Build`:
176//!
177//! ```rust,no_run
178//! cc::Build::new()
179//!     .cpp(true) // Switch to C++ library compilation.
180//!     .file("foo.cpp")
181//!     .compile("foo");
182//! ```
183//!
184//! For C++ libraries, the `CXX` and `CXXFLAGS` environment variables are used instead of `CC` and `CFLAGS`.
185//!
186//! The C++ standard library may be linked to the crate target. By default it's `libc++` for macOS, FreeBSD, and OpenBSD, `libc++_shared` for Android, nothing for MSVC, and `libstdc++` for anything else. It can be changed in one of two ways:
187//!
188//! 1. by using the `cpp_link_stdlib` method on `Build`:
189//! ```rust,no_run
190//! cc::Build::new()
191//!     .cpp(true)
192//!     .file("foo.cpp")
193//!     .cpp_link_stdlib("stdc++") // use libstdc++
194//!     .compile("foo");
195//! ```
196//! 2. by setting the `CXXSTDLIB` environment variable.
197//!
198//! In particular, for Android you may want to [use `c++_static` if you have at most one shared library](https://developer.android.com/ndk/guides/cpp-support).
199//!
200//! Remember that C++ does name mangling so `extern "C"` might be required to enable Rust linker to find your functions.
201//!
202//! # CUDA C++ support
203//!
204//! `cc-rs` also supports compiling CUDA C++ libraries by using the `cuda` method
205//! on `Build`:
206//!
207//! ```rust,no_run
208//! cc::Build::new()
209//!     // Switch to CUDA C++ library compilation using NVCC.
210//!     .cuda(true)
211//!     .cudart("static")
212//!     // Generate code for Maxwell (GTX 970, 980, 980 Ti, Titan X).
213//!     .flag("-gencode").flag("arch=compute_52,code=sm_52")
214//!     // Generate code for Maxwell (Jetson TX1).
215//!     .flag("-gencode").flag("arch=compute_53,code=sm_53")
216//!     // Generate code for Pascal (GTX 1070, 1080, 1080 Ti, Titan Xp).
217//!     .flag("-gencode").flag("arch=compute_61,code=sm_61")
218//!     // Generate code for Pascal (Tesla P100).
219//!     .flag("-gencode").flag("arch=compute_60,code=sm_60")
220//!     // Generate code for Pascal (Jetson TX2).
221//!     .flag("-gencode").flag("arch=compute_62,code=sm_62")
222//!     // Generate code in parallel
223//!     .flag("-t0")
224//!     .file("bar.cu")
225//!     .compile("bar");
226//! ```
227//!
228//! # Speed up compilation with sccache
229//!
230//! `cc-rs` does not handle incremental compilation like `make` or `ninja`. It
231//! always compiles the all sources, no matter if they have changed or not.
232//! This would be time-consuming in large projects. To save compilation time,
233//! you can use [sccache](https://github.com/mozilla/sccache) by setting
234//! environment variable `RUSTC_WRAPPER=sccache`, which will use cached `.o`
235//! files if the sources are unchanged.
236
237#![doc(html_root_url = "https://docs.rs/cc/1.0")]
238#![deny(warnings)]
239#![deny(missing_docs)]
240#![deny(clippy::disallowed_methods)]
241#![warn(clippy::doc_markdown)]
242
243use std::borrow::Cow;
244use std::collections::HashMap;
245use std::env;
246use std::ffi::{OsStr, OsString};
247use std::fmt::{self, Display};
248use std::fs;
249use std::io::{self, Write};
250use std::path::{Component, Path, PathBuf};
251#[cfg(feature = "parallel")]
252use std::process::Child;
253use std::process::{Command, Stdio};
254use std::sync::{
255    atomic::{AtomicU8, Ordering::Relaxed},
256    Arc, RwLock,
257};
258
259use shlex::Shlex;
260
261#[cfg(feature = "parallel")]
262mod parallel;
263mod target;
264mod windows;
265use self::target::TargetInfo;
266// Regardless of whether this should be in this crate's public API,
267// it has been since 2015, so don't break it.
268pub use windows::find_tools as windows_registry;
269
270mod command_helpers;
271use command_helpers::*;
272
273mod tool;
274pub use tool::Tool;
275use tool::{CompilerFamilyLookupCache, ToolFamily};
276
277mod tempfile;
278
279mod utilities;
280use utilities::*;
281
282mod flags;
283use flags::*;
284
285#[derive(Debug, Eq, PartialEq, Hash)]
286struct CompilerFlag {
287    compiler: Box<Path>,
288    flag: Box<OsStr>,
289}
290
291type Env = Option<Arc<OsStr>>;
292
293#[derive(Debug, Default)]
294struct BuildCache {
295    env_cache: RwLock<HashMap<Box<str>, Env>>,
296    apple_sdk_root_cache: RwLock<HashMap<Box<str>, Arc<OsStr>>>,
297    apple_versions_cache: RwLock<HashMap<Box<str>, Arc<str>>>,
298    cached_compiler_family: RwLock<CompilerFamilyLookupCache>,
299    known_flag_support_status_cache: RwLock<HashMap<CompilerFlag, bool>>,
300    target_info_parser: target::TargetInfoParser,
301}
302
303/// A builder for compilation of a native library.
304///
305/// A `Build` is the main type of the `cc` crate and is used to control all the
306/// various configuration options and such of a compile. You'll find more
307/// documentation on each method itself.
308#[derive(Clone, Debug)]
309pub struct Build {
310    include_directories: Vec<Arc<Path>>,
311    definitions: Vec<(Arc<str>, Option<Arc<str>>)>,
312    objects: Vec<Arc<Path>>,
313    flags: Vec<Arc<OsStr>>,
314    flags_supported: Vec<Arc<OsStr>>,
315    ar_flags: Vec<Arc<OsStr>>,
316    asm_flags: Vec<Arc<OsStr>>,
317    no_default_flags: bool,
318    files: Vec<Arc<Path>>,
319    cpp: bool,
320    cpp_link_stdlib: Option<Option<Arc<str>>>,
321    cpp_link_stdlib_static: bool,
322    cpp_set_stdlib: Option<Arc<str>>,
323    cuda: bool,
324    cudart: Option<Arc<str>>,
325    ccbin: bool,
326    std: Option<Arc<str>>,
327    target: Option<Arc<str>>,
328    /// The host compiler.
329    ///
330    /// Try to not access this directly, and instead prefer `cfg!(...)`.
331    host: Option<Arc<str>>,
332    out_dir: Option<Arc<Path>>,
333    opt_level: Option<Arc<str>>,
334    debug: Option<bool>,
335    force_frame_pointer: Option<bool>,
336    env: Vec<(Arc<OsStr>, Arc<OsStr>)>,
337    compiler: Option<Arc<Path>>,
338    archiver: Option<Arc<Path>>,
339    ranlib: Option<Arc<Path>>,
340    cargo_output: CargoOutput,
341    link_lib_modifiers: Vec<Arc<OsStr>>,
342    pic: Option<bool>,
343    use_plt: Option<bool>,
344    static_crt: Option<bool>,
345    shared_flag: Option<bool>,
346    static_flag: Option<bool>,
347    warnings_into_errors: bool,
348    warnings: Option<bool>,
349    extra_warnings: Option<bool>,
350    emit_rerun_if_env_changed: bool,
351    shell_escaped_flags: Option<bool>,
352    build_cache: Arc<BuildCache>,
353    inherit_rustflags: bool,
354}
355
356/// Represents the types of errors that may occur while using cc-rs.
357#[derive(Clone, Debug)]
358enum ErrorKind {
359    /// Error occurred while performing I/O.
360    IOError,
361    /// Environment variable not found, with the var in question as extra info.
362    EnvVarNotFound,
363    /// Error occurred while using external tools (ie: invocation of compiler).
364    ToolExecError,
365    /// Error occurred due to missing external tools.
366    ToolNotFound,
367    /// One of the function arguments failed validation.
368    InvalidArgument,
369    /// No known macro is defined for the compiler when discovering tool family.
370    ToolFamilyMacroNotFound,
371    /// Invalid target.
372    InvalidTarget,
373    /// Unknown target.
374    UnknownTarget,
375    /// Invalid rustc flag.
376    InvalidFlag,
377    #[cfg(feature = "parallel")]
378    /// jobserver helpthread failure
379    JobserverHelpThreadError,
380    /// `cc` has been disabled by an environment variable.
381    Disabled,
382}
383
384/// Represents an internal error that occurred, with an explanation.
385#[derive(Clone, Debug)]
386pub struct Error {
387    /// Describes the kind of error that occurred.
388    kind: ErrorKind,
389    /// More explanation of error that occurred.
390    message: Cow<'static, str>,
391}
392
393impl Error {
394    fn new(kind: ErrorKind, message: impl Into<Cow<'static, str>>) -> Error {
395        Error {
396            kind,
397            message: message.into(),
398        }
399    }
400}
401
402impl From<io::Error> for Error {
403    fn from(e: io::Error) -> Error {
404        Error::new(ErrorKind::IOError, format!("{e}"))
405    }
406}
407
408impl Display for Error {
409    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
410        write!(f, "{:?}: {}", self.kind, self.message)
411    }
412}
413
414impl std::error::Error for Error {}
415
416/// Represents an object.
417///
418/// This is a source file -> object file pair.
419#[derive(Clone, Debug)]
420struct Object {
421    src: PathBuf,
422    dst: PathBuf,
423}
424
425impl Object {
426    /// Create a new source file -> object file pair.
427    fn new(src: PathBuf, dst: PathBuf) -> Object {
428        Object { src, dst }
429    }
430}
431
432/// Configure the builder.
433impl Build {
434    /// Construct a new instance of a blank set of configuration.
435    ///
436    /// This builder is finished with the [`compile`] function.
437    ///
438    /// [`compile`]: struct.Build.html#method.compile
439    pub fn new() -> Build {
440        Build {
441            include_directories: Vec::new(),
442            definitions: Vec::new(),
443            objects: Vec::new(),
444            flags: Vec::new(),
445            flags_supported: Vec::new(),
446            ar_flags: Vec::new(),
447            asm_flags: Vec::new(),
448            no_default_flags: false,
449            files: Vec::new(),
450            shared_flag: None,
451            static_flag: None,
452            cpp: false,
453            cpp_link_stdlib: None,
454            cpp_link_stdlib_static: false,
455            cpp_set_stdlib: None,
456            cuda: false,
457            cudart: None,
458            ccbin: true,
459            std: None,
460            target: None,
461            host: None,
462            out_dir: None,
463            opt_level: None,
464            debug: None,
465            force_frame_pointer: None,
466            env: Vec::new(),
467            compiler: None,
468            archiver: None,
469            ranlib: None,
470            cargo_output: CargoOutput::new(),
471            link_lib_modifiers: Vec::new(),
472            pic: None,
473            use_plt: None,
474            static_crt: None,
475            warnings: None,
476            extra_warnings: None,
477            warnings_into_errors: false,
478            emit_rerun_if_env_changed: true,
479            shell_escaped_flags: None,
480            build_cache: Arc::default(),
481            inherit_rustflags: true,
482        }
483    }
484
485    /// Add a directory to the `-I` or include path for headers
486    ///
487    /// # Example
488    ///
489    /// ```no_run
490    /// use std::path::Path;
491    ///
492    /// let library_path = Path::new("/path/to/library");
493    ///
494    /// cc::Build::new()
495    ///     .file("src/foo.c")
496    ///     .include(library_path)
497    ///     .include("src")
498    ///     .compile("foo");
499    /// ```
500    pub fn include<P: AsRef<Path>>(&mut self, dir: P) -> &mut Build {
501        self.include_directories.push(dir.as_ref().into());
502        self
503    }
504
505    /// Add multiple directories to the `-I` include path.
506    ///
507    /// # Example
508    ///
509    /// ```no_run
510    /// # use std::path::Path;
511    /// # let condition = true;
512    /// #
513    /// let mut extra_dir = None;
514    /// if condition {
515    ///     extra_dir = Some(Path::new("/path/to"));
516    /// }
517    ///
518    /// cc::Build::new()
519    ///     .file("src/foo.c")
520    ///     .includes(extra_dir)
521    ///     .compile("foo");
522    /// ```
523    pub fn includes<P>(&mut self, dirs: P) -> &mut Build
524    where
525        P: IntoIterator,
526        P::Item: AsRef<Path>,
527    {
528        for dir in dirs {
529            self.include(dir);
530        }
531        self
532    }
533
534    /// Specify a `-D` variable with an optional value.
535    ///
536    /// # Example
537    ///
538    /// ```no_run
539    /// cc::Build::new()
540    ///     .file("src/foo.c")
541    ///     .define("FOO", "BAR")
542    ///     .define("BAZ", None)
543    ///     .compile("foo");
544    /// ```
545    pub fn define<'a, V: Into<Option<&'a str>>>(&mut self, var: &str, val: V) -> &mut Build {
546        self.definitions
547            .push((var.into(), val.into().map(Into::into)));
548        self
549    }
550
551    /// Add an arbitrary object file to link in
552    pub fn object<P: AsRef<Path>>(&mut self, obj: P) -> &mut Build {
553        self.objects.push(obj.as_ref().into());
554        self
555    }
556
557    /// Add arbitrary object files to link in
558    pub fn objects<P>(&mut self, objs: P) -> &mut Build
559    where
560        P: IntoIterator,
561        P::Item: AsRef<Path>,
562    {
563        for obj in objs {
564            self.object(obj);
565        }
566        self
567    }
568
569    /// Add an arbitrary flag to the invocation of the compiler
570    ///
571    /// # Example
572    ///
573    /// ```no_run
574    /// cc::Build::new()
575    ///     .file("src/foo.c")
576    ///     .flag("-ffunction-sections")
577    ///     .compile("foo");
578    /// ```
579    pub fn flag(&mut self, flag: impl AsRef<OsStr>) -> &mut Build {
580        self.flags.push(flag.as_ref().into());
581        self
582    }
583
584    /// Add multiple flags to the invocation of the compiler.
585    /// This is equivalent to calling [`flag`](Self::flag) for each item in the iterator.
586    ///
587    /// # Example
588    /// ```no_run
589    /// cc::Build::new()
590    ///     .file("src/foo.c")
591    ///     .flags(["-Wall", "-Wextra"])
592    ///     .compile("foo");
593    /// ```
594    pub fn flags<Iter>(&mut self, flags: Iter) -> &mut Build
595    where
596        Iter: IntoIterator,
597        Iter::Item: AsRef<OsStr>,
598    {
599        for flag in flags {
600            self.flag(flag);
601        }
602        self
603    }
604
605    /// Removes a compiler flag that was added by [`Build::flag`].
606    ///
607    /// Will not remove flags added by other means (default flags,
608    /// flags from env, and so on).
609    ///
610    /// # Example
611    /// ```
612    /// cc::Build::new()
613    ///     .file("src/foo.c")
614    ///     .flag("unwanted_flag")
615    ///     .remove_flag("unwanted_flag");
616    /// ```
617    pub fn remove_flag(&mut self, flag: &str) -> &mut Build {
618        self.flags.retain(|other_flag| &**other_flag != flag);
619        self
620    }
621
622    /// Add a flag to the invocation of the ar
623    ///
624    /// # Example
625    ///
626    /// ```no_run
627    /// cc::Build::new()
628    ///     .file("src/foo.c")
629    ///     .file("src/bar.c")
630    ///     .ar_flag("/NODEFAULTLIB:libc.dll")
631    ///     .compile("foo");
632    /// ```
633    pub fn ar_flag(&mut self, flag: impl AsRef<OsStr>) -> &mut Build {
634        self.ar_flags.push(flag.as_ref().into());
635        self
636    }
637
638    /// Add a flag that will only be used with assembly files.
639    ///
640    /// The flag will be applied to input files with either a `.s` or
641    /// `.asm` extension (case insensitive).
642    ///
643    /// # Example
644    ///
645    /// ```no_run
646    /// cc::Build::new()
647    ///     .asm_flag("-Wa,-defsym,abc=1")
648    ///     .file("src/foo.S")  // The asm flag will be applied here
649    ///     .file("src/bar.c")  // The asm flag will not be applied here
650    ///     .compile("foo");
651    /// ```
652    pub fn asm_flag(&mut self, flag: impl AsRef<OsStr>) -> &mut Build {
653        self.asm_flags.push(flag.as_ref().into());
654        self
655    }
656
657    /// Add an arbitrary flag to the invocation of the compiler if it supports it
658    ///
659    /// # Example
660    ///
661    /// ```no_run
662    /// cc::Build::new()
663    ///     .file("src/foo.c")
664    ///     .flag_if_supported("-Wlogical-op") // only supported by GCC
665    ///     .flag_if_supported("-Wunreachable-code") // only supported by clang
666    ///     .compile("foo");
667    /// ```
668    pub fn flag_if_supported(&mut self, flag: impl AsRef<OsStr>) -> &mut Build {
669        self.flags_supported.push(flag.as_ref().into());
670        self
671    }
672
673    /// Add flags from the specified environment variable.
674    ///
675    /// Normally the `cc` crate will consult with the standard set of environment
676    /// variables (such as `CFLAGS` and `CXXFLAGS`) to construct the compiler invocation. Use of
677    /// this method provides additional levers for the end user to use when configuring the build
678    /// process.
679    ///
680    /// Just like the standard variables, this method will search for an environment variable with
681    /// appropriate target prefixes, when appropriate.
682    ///
683    /// # Examples
684    ///
685    /// This method is particularly beneficial in introducing the ability to specify crate-specific
686    /// flags.
687    ///
688    /// ```no_run
689    /// cc::Build::new()
690    ///     .file("src/foo.c")
691    ///     .try_flags_from_environment(concat!(env!("CARGO_PKG_NAME"), "_CFLAGS"))
692    ///     .expect("the environment variable must be specified and UTF-8")
693    ///     .compile("foo");
694    /// ```
695    ///
696    pub fn try_flags_from_environment(&mut self, environ_key: &str) -> Result<&mut Build, Error> {
697        let flags = self.envflags(environ_key)?.ok_or_else(|| {
698            Error::new(
699                ErrorKind::EnvVarNotFound,
700                format!("could not find environment variable {environ_key}"),
701            )
702        })?;
703        self.flags.extend(
704            flags
705                .into_iter()
706                .map(|flag| Arc::from(OsString::from(flag).as_os_str())),
707        );
708        Ok(self)
709    }
710
711    /// Set the `-shared` flag.
712    ///
713    /// When enabled, the compiler will produce a shared object which can
714    /// then be linked with other objects to form an executable.
715    ///
716    /// # Example
717    ///
718    /// ```no_run
719    /// cc::Build::new()
720    ///     .file("src/foo.c")
721    ///     .shared_flag(true)
722    ///     .compile("libfoo.so");
723    /// ```
724    pub fn shared_flag(&mut self, shared_flag: bool) -> &mut Build {
725        self.shared_flag = Some(shared_flag);
726        self
727    }
728
729    /// Set the `-static` flag.
730    ///
731    /// When enabled on systems that support dynamic linking, this prevents
732    /// linking with the shared libraries.
733    ///
734    /// # Example
735    ///
736    /// ```no_run
737    /// cc::Build::new()
738    ///     .file("src/foo.c")
739    ///     .shared_flag(true)
740    ///     .static_flag(true)
741    ///     .compile("foo");
742    /// ```
743    pub fn static_flag(&mut self, static_flag: bool) -> &mut Build {
744        self.static_flag = Some(static_flag);
745        self
746    }
747
748    /// Disables the generation of default compiler flags. The default compiler
749    /// flags may cause conflicts in some cross compiling scenarios.
750    ///
751    /// Setting the `CRATE_CC_NO_DEFAULTS` environment variable has the same
752    /// effect as setting this to `true`. The presence of the environment
753    /// variable and the value of `no_default_flags` will be OR'd together.
754    pub fn no_default_flags(&mut self, no_default_flags: bool) -> &mut Build {
755        self.no_default_flags = no_default_flags;
756        self
757    }
758
759    /// Add a file which will be compiled
760    pub fn file<P: AsRef<Path>>(&mut self, p: P) -> &mut Build {
761        self.files.push(p.as_ref().into());
762        self
763    }
764
765    /// Add files which will be compiled
766    pub fn files<P>(&mut self, p: P) -> &mut Build
767    where
768        P: IntoIterator,
769        P::Item: AsRef<Path>,
770    {
771        for file in p.into_iter() {
772            self.file(file);
773        }
774        self
775    }
776
777    /// Get the files which will be compiled
778    pub fn get_files(&self) -> impl Iterator<Item = &Path> {
779        self.files.iter().map(AsRef::as_ref)
780    }
781
782    /// Set C++ support.
783    ///
784    /// The other `cpp_*` options will only become active if this is set to
785    /// `true`.
786    ///
787    /// The name of the C++ standard library to link is decided by:
788    /// 1. If [`cpp_link_stdlib`](Build::cpp_link_stdlib) is set, use its value.
789    /// 2. Else if the `CXXSTDLIB` environment variable is set, use its value.
790    /// 3. Else the default is `c++` for OS X and BSDs, `c++_shared` for Android,
791    ///    `None` for MSVC and `stdc++` for anything else.
792    pub fn cpp(&mut self, cpp: bool) -> &mut Build {
793        self.cpp = cpp;
794        self
795    }
796
797    /// Set CUDA C++ support.
798    ///
799    /// Enabling CUDA will invoke the CUDA compiler, NVCC. While NVCC accepts
800    /// the most common compiler flags, e.g. `-std=c++17`, some project-specific
801    /// flags might have to be prefixed with "-Xcompiler" flag, for example as
802    /// `.flag("-Xcompiler").flag("-fpermissive")`. See the documentation for
803    /// `nvcc`, the CUDA compiler driver, at <https://docs.nvidia.com/cuda/cuda-compiler-driver-nvcc/>
804    /// for more information.
805    ///
806    /// If enabled, this also implicitly enables C++ support.
807    pub fn cuda(&mut self, cuda: bool) -> &mut Build {
808        self.cuda = cuda;
809        if cuda {
810            self.cpp = true;
811            self.cudart = Some("static".into());
812        }
813        self
814    }
815
816    /// Link CUDA run-time.
817    ///
818    /// This option mimics the `--cudart` NVCC command-line option. Just like
819    /// the original it accepts `{none|shared|static}`, with default being
820    /// `static`. The method has to be invoked after `.cuda(true)`, or not
821    /// at all, if the default is right for the project.
822    pub fn cudart(&mut self, cudart: &str) -> &mut Build {
823        if self.cuda {
824            self.cudart = Some(cudart.into());
825        }
826        self
827    }
828
829    /// Set CUDA host compiler.
830    ///
831    /// By default, a `-ccbin` flag will be passed to NVCC to specify the
832    /// underlying host compiler. The value of `-ccbin` is the same as the
833    /// chosen C++ compiler. This is not always desired, because NVCC might
834    /// not support that compiler. In this case, you can remove the `-ccbin`
835    /// flag so that NVCC will choose the host compiler by itself.
836    pub fn ccbin(&mut self, ccbin: bool) -> &mut Build {
837        self.ccbin = ccbin;
838        self
839    }
840
841    /// Specify the C or C++ language standard version.
842    ///
843    /// These values are common to modern versions of GCC, Clang and MSVC:
844    /// - `c11` for ISO/IEC 9899:2011
845    /// - `c17` for ISO/IEC 9899:2018
846    /// - `c++14` for ISO/IEC 14882:2014
847    /// - `c++17` for ISO/IEC 14882:2017
848    /// - `c++20` for ISO/IEC 14882:2020
849    ///
850    /// Other values have less broad support, e.g. MSVC does not support `c++11`
851    /// (`c++14` is the minimum), `c89` (omit the flag instead) or `c99`.
852    ///
853    /// For compiling C++ code, you should also set `.cpp(true)`.
854    ///
855    /// The default is that no standard flag is passed to the compiler, so the
856    /// language version will be the compiler's default.
857    ///
858    /// # Example
859    ///
860    /// ```no_run
861    /// cc::Build::new()
862    ///     .file("src/modern.cpp")
863    ///     .cpp(true)
864    ///     .std("c++17")
865    ///     .compile("modern");
866    /// ```
867    pub fn std(&mut self, std: &str) -> &mut Build {
868        self.std = Some(std.into());
869        self
870    }
871
872    /// Set warnings into errors flag.
873    ///
874    /// Disabled by default.
875    ///
876    /// Warning: turning warnings into errors only make sense
877    /// if you are a developer of the crate using cc-rs.
878    /// Some warnings only appear on some architecture or
879    /// specific version of the compiler. Any user of this crate,
880    /// or any other crate depending on it, could fail during
881    /// compile time.
882    ///
883    /// # Example
884    ///
885    /// ```no_run
886    /// cc::Build::new()
887    ///     .file("src/foo.c")
888    ///     .warnings_into_errors(true)
889    ///     .compile("libfoo.a");
890    /// ```
891    pub fn warnings_into_errors(&mut self, warnings_into_errors: bool) -> &mut Build {
892        self.warnings_into_errors = warnings_into_errors;
893        self
894    }
895
896    /// Set warnings flags.
897    ///
898    /// Adds some flags:
899    /// - "-Wall" for MSVC.
900    /// - "-Wall", "-Wextra" for GNU and Clang.
901    ///
902    /// Enabled by default.
903    ///
904    /// # Example
905    ///
906    /// ```no_run
907    /// cc::Build::new()
908    ///     .file("src/foo.c")
909    ///     .warnings(false)
910    ///     .compile("libfoo.a");
911    /// ```
912    pub fn warnings(&mut self, warnings: bool) -> &mut Build {
913        self.warnings = Some(warnings);
914        self.extra_warnings = Some(warnings);
915        self
916    }
917
918    /// Set extra warnings flags.
919    ///
920    /// Adds some flags:
921    /// - nothing for MSVC.
922    /// - "-Wextra" for GNU and Clang.
923    ///
924    /// Enabled by default.
925    ///
926    /// # Example
927    ///
928    /// ```no_run
929    /// // Disables -Wextra, -Wall remains enabled:
930    /// cc::Build::new()
931    ///     .file("src/foo.c")
932    ///     .extra_warnings(false)
933    ///     .compile("libfoo.a");
934    /// ```
935    pub fn extra_warnings(&mut self, warnings: bool) -> &mut Build {
936        self.extra_warnings = Some(warnings);
937        self
938    }
939
940    /// Set the standard library to link against when compiling with C++
941    /// support.
942    ///
943    /// If the `CXXSTDLIB` environment variable is set, its value will
944    /// override the default value, but not the value explicitly set by calling
945    /// this function.
946    ///
947    /// A value of `None` indicates that no automatic linking should happen,
948    /// otherwise cargo will link against the specified library.
949    ///
950    /// The given library name must not contain the `lib` prefix.
951    ///
952    /// Common values:
953    /// - `stdc++` for GNU
954    /// - `c++` for Clang
955    /// - `c++_shared` or `c++_static` for Android
956    ///
957    /// # Example
958    ///
959    /// ```no_run
960    /// cc::Build::new()
961    ///     .file("src/foo.c")
962    ///     .shared_flag(true)
963    ///     .cpp_link_stdlib("stdc++")
964    ///     .compile("libfoo.so");
965    /// ```
966    pub fn cpp_link_stdlib<'a, V: Into<Option<&'a str>>>(
967        &mut self,
968        cpp_link_stdlib: V,
969    ) -> &mut Build {
970        self.cpp_link_stdlib = Some(cpp_link_stdlib.into().map(Arc::from));
971        self
972    }
973
974    /// Force linker to statically link C++ stdlib. By default cc-rs will emit
975    /// rustc-link flag to link against system C++ stdlib (e.g. libstdc++.so, libc++.so)
976    /// Provide value of `true` if linking against system library is not desired
977    ///
978    /// Note that for `wasm32` target C++ stdlib will always be linked statically
979    ///
980    /// # Example
981    ///
982    /// ```no_run
983    /// cc::Build::new()
984    ///     .file("src/foo.cpp")
985    ///     .cpp(true)
986    ///     .cpp_link_stdlib("stdc++")
987    ///     .cpp_link_stdlib_static(true)
988    ///     .compile("foo");
989    /// ```
990    pub fn cpp_link_stdlib_static(&mut self, is_static: bool) -> &mut Build {
991        self.cpp_link_stdlib_static = is_static;
992        self
993    }
994
995    /// Force the C++ compiler to use the specified standard library.
996    ///
997    /// Setting this option will automatically set `cpp_link_stdlib` to the same
998    /// value.
999    ///
1000    /// The default value of this option is always `None`.
1001    ///
1002    /// This option has no effect when compiling for a Visual Studio based
1003    /// target.
1004    ///
1005    /// This option sets the `-stdlib` flag, which is only supported by some
1006    /// compilers (clang, icc) but not by others (gcc). The library will not
1007    /// detect which compiler is used, as such it is the responsibility of the
1008    /// caller to ensure that this option is only used in conjunction with a
1009    /// compiler which supports the `-stdlib` flag.
1010    ///
1011    /// A value of `None` indicates that no specific C++ standard library should
1012    /// be used, otherwise `-stdlib` is added to the compile invocation.
1013    ///
1014    /// The given library name must not contain the `lib` prefix.
1015    ///
1016    /// Common values:
1017    /// - `stdc++` for GNU
1018    /// - `c++` for Clang
1019    ///
1020    /// # Example
1021    ///
1022    /// ```no_run
1023    /// cc::Build::new()
1024    ///     .file("src/foo.c")
1025    ///     .cpp_set_stdlib("c++")
1026    ///     .compile("libfoo.a");
1027    /// ```
1028    pub fn cpp_set_stdlib<'a, V: Into<Option<&'a str>>>(
1029        &mut self,
1030        cpp_set_stdlib: V,
1031    ) -> &mut Build {
1032        let cpp_set_stdlib = cpp_set_stdlib.into().map(Arc::from);
1033        self.cpp_set_stdlib.clone_from(&cpp_set_stdlib);
1034        self.cpp_link_stdlib = Some(cpp_set_stdlib);
1035        self
1036    }
1037
1038    /// Configures the `rustc` target this configuration will be compiling
1039    /// for.
1040    ///
1041    /// This will fail if using a target not in a pre-compiled list taken from
1042    /// `rustc +nightly --print target-list`. The list will be updated
1043    /// periodically.
1044    ///
1045    /// You should avoid setting this in build scripts, target information
1046    /// will instead be retrieved from the environment variables `TARGET` and
1047    /// `CARGO_CFG_TARGET_*` that Cargo sets.
1048    ///
1049    /// # Example
1050    ///
1051    /// ```no_run
1052    /// cc::Build::new()
1053    ///     .file("src/foo.c")
1054    ///     .target("aarch64-linux-android")
1055    ///     .compile("foo");
1056    /// ```
1057    pub fn target(&mut self, target: &str) -> &mut Build {
1058        self.target = Some(target.into());
1059        self
1060    }
1061
1062    /// Configures the host assumed by this configuration.
1063    ///
1064    /// This option is automatically scraped from the `HOST` environment
1065    /// variable by build scripts, so it's not required to call this function.
1066    ///
1067    /// # Example
1068    ///
1069    /// ```no_run
1070    /// cc::Build::new()
1071    ///     .file("src/foo.c")
1072    ///     .host("arm-linux-gnueabihf")
1073    ///     .compile("foo");
1074    /// ```
1075    pub fn host(&mut self, host: &str) -> &mut Build {
1076        self.host = Some(host.into());
1077        self
1078    }
1079
1080    /// Configures the optimization level of the generated object files.
1081    ///
1082    /// This option is automatically scraped from the `OPT_LEVEL` environment
1083    /// variable by build scripts, so it's not required to call this function.
1084    pub fn opt_level(&mut self, opt_level: u32) -> &mut Build {
1085        self.opt_level = Some(opt_level.to_string().into());
1086        self
1087    }
1088
1089    /// Configures the optimization level of the generated object files.
1090    ///
1091    /// This option is automatically scraped from the `OPT_LEVEL` environment
1092    /// variable by build scripts, so it's not required to call this function.
1093    pub fn opt_level_str(&mut self, opt_level: &str) -> &mut Build {
1094        self.opt_level = Some(opt_level.into());
1095        self
1096    }
1097
1098    /// Configures whether the compiler will emit debug information when
1099    /// generating object files.
1100    ///
1101    /// This option is automatically scraped from the `DEBUG` environment
1102    /// variable by build scripts, so it's not required to call this function.
1103    pub fn debug(&mut self, debug: bool) -> &mut Build {
1104        self.debug = Some(debug);
1105        self
1106    }
1107
1108    /// Configures whether the compiler will emit instructions to store
1109    /// frame pointers during codegen.
1110    ///
1111    /// This option is automatically enabled when debug information is emitted.
1112    /// Otherwise the target platform compiler's default will be used.
1113    /// You can use this option to force a specific setting.
1114    pub fn force_frame_pointer(&mut self, force: bool) -> &mut Build {
1115        self.force_frame_pointer = Some(force);
1116        self
1117    }
1118
1119    /// Configures the output directory where all object files and static
1120    /// libraries will be located.
1121    ///
1122    /// This option is automatically scraped from the `OUT_DIR` environment
1123    /// variable by build scripts, so it's not required to call this function.
1124    pub fn out_dir<P: AsRef<Path>>(&mut self, out_dir: P) -> &mut Build {
1125        self.out_dir = Some(out_dir.as_ref().into());
1126        self
1127    }
1128
1129    /// Configures the compiler to be used to produce output.
1130    ///
1131    /// This option is automatically determined from the target platform or a
1132    /// number of environment variables, so it's not required to call this
1133    /// function.
1134    pub fn compiler<P: AsRef<Path>>(&mut self, compiler: P) -> &mut Build {
1135        self.compiler = Some(compiler.as_ref().into());
1136        self
1137    }
1138
1139    /// Configures the tool used to assemble archives.
1140    ///
1141    /// This option is automatically determined from the target platform or a
1142    /// number of environment variables, so it's not required to call this
1143    /// function.
1144    pub fn archiver<P: AsRef<Path>>(&mut self, archiver: P) -> &mut Build {
1145        self.archiver = Some(archiver.as_ref().into());
1146        self
1147    }
1148
1149    /// Configures the tool used to index archives.
1150    ///
1151    /// This option is automatically determined from the target platform or a
1152    /// number of environment variables, so it's not required to call this
1153    /// function.
1154    pub fn ranlib<P: AsRef<Path>>(&mut self, ranlib: P) -> &mut Build {
1155        self.ranlib = Some(ranlib.as_ref().into());
1156        self
1157    }
1158
1159    /// Define whether metadata should be emitted for cargo allowing it to
1160    /// automatically link the binary. Defaults to `true`.
1161    ///
1162    /// The emitted metadata is:
1163    ///
1164    ///  - `rustc-link-lib=static=`*compiled lib*
1165    ///  - `rustc-link-search=native=`*target folder*
1166    ///  - When target is MSVC, the ATL-MFC libs are added via `rustc-link-search=native=`
1167    ///  - When C++ is enabled, the C++ stdlib is added via `rustc-link-lib`
1168    ///  - If `emit_rerun_if_env_changed` is not `false`, `rerun-if-env-changed=`*env*
1169    ///
1170    pub fn cargo_metadata(&mut self, cargo_metadata: bool) -> &mut Build {
1171        self.cargo_output.metadata = cargo_metadata;
1172        self
1173    }
1174
1175    /// Define whether compile warnings should be emitted for cargo. Defaults to
1176    /// `true`.
1177    ///
1178    /// If disabled, compiler messages will not be printed.
1179    /// Issues unrelated to the compilation will always produce cargo warnings regardless of this setting.
1180    pub fn cargo_warnings(&mut self, cargo_warnings: bool) -> &mut Build {
1181        self.cargo_output.warnings = cargo_warnings;
1182        self
1183    }
1184
1185    /// Define whether debug information should be emitted for cargo. Defaults to whether
1186    /// or not the environment variable `CC_ENABLE_DEBUG_OUTPUT` is set.
1187    ///
1188    /// If enabled, the compiler will emit debug information when generating object files,
1189    /// such as the command invoked and the exit status.
1190    pub fn cargo_debug(&mut self, cargo_debug: bool) -> &mut Build {
1191        self.cargo_output.debug = cargo_debug;
1192        self
1193    }
1194
1195    /// Define whether compiler output (to stdout) should be emitted. Defaults to `true`
1196    /// (forward compiler stdout to this process' stdout)
1197    ///
1198    /// Some compilers emit errors to stdout, so if you *really* need stdout to be clean
1199    /// you should also set this to `false`.
1200    pub fn cargo_output(&mut self, cargo_output: bool) -> &mut Build {
1201        self.cargo_output.output = if cargo_output {
1202            OutputKind::Forward
1203        } else {
1204            OutputKind::Discard
1205        };
1206        self
1207    }
1208
1209    /// Adds a native library modifier that will be added to the
1210    /// `rustc-link-lib=static:MODIFIERS=LIBRARY_NAME` metadata line
1211    /// emitted for cargo if `cargo_metadata` is enabled.
1212    /// See <https://doc.rust-lang.org/rustc/command-line-arguments.html#-l-link-the-generated-crate-to-a-native-library>
1213    /// for the list of modifiers accepted by rustc.
1214    pub fn link_lib_modifier(&mut self, link_lib_modifier: impl AsRef<OsStr>) -> &mut Build {
1215        self.link_lib_modifiers
1216            .push(link_lib_modifier.as_ref().into());
1217        self
1218    }
1219
1220    /// Configures whether the compiler will emit position independent code.
1221    ///
1222    /// This option defaults to `false` for `windows-gnu` and bare metal targets and
1223    /// to `true` for all other targets.
1224    pub fn pic(&mut self, pic: bool) -> &mut Build {
1225        self.pic = Some(pic);
1226        self
1227    }
1228
1229    /// Configures whether the Procedure Linkage Table is used for indirect
1230    /// calls into shared libraries.
1231    ///
1232    /// The PLT is used to provide features like lazy binding, but introduces
1233    /// a small performance loss due to extra pointer indirection. Setting
1234    /// `use_plt` to `false` can provide a small performance increase.
1235    ///
1236    /// Note that skipping the PLT requires a recent version of GCC/Clang.
1237    ///
1238    /// This only applies to ELF targets. It has no effect on other platforms.
1239    pub fn use_plt(&mut self, use_plt: bool) -> &mut Build {
1240        self.use_plt = Some(use_plt);
1241        self
1242    }
1243
1244    /// Define whether metadata should be emitted for cargo to detect environment
1245    /// changes that should trigger a rebuild.
1246    ///
1247    /// NOTE that cc does not emit metadata to detect changes for `PATH`, since it could
1248    /// be changed every comilation yet does not affect the result of compilation
1249    /// (i.e. rust-analyzer adds temporary directory to `PATH`).
1250    ///
1251    /// cc in general, has no way detecting changes to compiler, as there are so many ways to
1252    /// change it and sidestep the detection, for example the compiler might be wrapped in a script
1253    /// so detecting change of the file, or using checksum won't work.
1254    ///
1255    /// We recommend users to decide for themselves, if they want rebuild if the compiler has been upgraded
1256    /// or changed, and how to detect that.
1257    ///
1258    /// This has no effect if the `cargo_metadata` option is `false`.
1259    ///
1260    /// This option defaults to `true`.
1261    pub fn emit_rerun_if_env_changed(&mut self, emit_rerun_if_env_changed: bool) -> &mut Build {
1262        self.emit_rerun_if_env_changed = emit_rerun_if_env_changed;
1263        self
1264    }
1265
1266    /// Configures whether the /MT flag or the /MD flag will be passed to msvc build tools.
1267    ///
1268    /// This option defaults to `false`, and affect only msvc targets.
1269    pub fn static_crt(&mut self, static_crt: bool) -> &mut Build {
1270        self.static_crt = Some(static_crt);
1271        self
1272    }
1273
1274    /// Configure whether *FLAGS variables are parsed using `shlex`, similarly to `make` and
1275    /// `cmake`.
1276    ///
1277    /// This option defaults to `false`.
1278    pub fn shell_escaped_flags(&mut self, shell_escaped_flags: bool) -> &mut Build {
1279        self.shell_escaped_flags = Some(shell_escaped_flags);
1280        self
1281    }
1282
1283    /// Configure whether cc should automatically inherit compatible flags passed to rustc
1284    /// from `CARGO_ENCODED_RUSTFLAGS`.
1285    ///
1286    /// This option defaults to `true`.
1287    pub fn inherit_rustflags(&mut self, inherit_rustflags: bool) -> &mut Build {
1288        self.inherit_rustflags = inherit_rustflags;
1289        self
1290    }
1291
1292    #[doc(hidden)]
1293    pub fn __set_env<A, B>(&mut self, a: A, b: B) -> &mut Build
1294    where
1295        A: AsRef<OsStr>,
1296        B: AsRef<OsStr>,
1297    {
1298        self.env.push((a.as_ref().into(), b.as_ref().into()));
1299        self
1300    }
1301}
1302
1303/// Invoke or fetch the compiler or archiver.
1304impl Build {
1305    /// Run the compiler to test if it accepts the given flag.
1306    ///
1307    /// For a convenience method for setting flags conditionally,
1308    /// see `flag_if_supported()`.
1309    ///
1310    /// It may return error if it's unable to run the compiler with a test file
1311    /// (e.g. the compiler is missing or a write to the `out_dir` failed).
1312    ///
1313    /// Note: Once computed, the result of this call is stored in the
1314    /// `known_flag_support` field. If `is_flag_supported(flag)`
1315    /// is called again, the result will be read from the hash table.
1316    pub fn is_flag_supported(&self, flag: impl AsRef<OsStr>) -> Result<bool, Error> {
1317        self.is_flag_supported_inner(
1318            flag.as_ref(),
1319            &self.get_base_compiler()?,
1320            &self.get_target()?,
1321        )
1322    }
1323
1324    fn ensure_check_file(&self) -> Result<PathBuf, Error> {
1325        let out_dir = self.get_out_dir()?;
1326        let src = if self.cuda {
1327            assert!(self.cpp);
1328            out_dir.join("flag_check.cu")
1329        } else if self.cpp {
1330            out_dir.join("flag_check.cpp")
1331        } else {
1332            out_dir.join("flag_check.c")
1333        };
1334
1335        if !src.exists() {
1336            let mut f = fs::File::create(&src)?;
1337            write!(f, "int main(void) {{ return 0; }}")?;
1338        }
1339
1340        Ok(src)
1341    }
1342
1343    fn is_flag_supported_inner(
1344        &self,
1345        flag: &OsStr,
1346        tool: &Tool,
1347        target: &TargetInfo<'_>,
1348    ) -> Result<bool, Error> {
1349        let compiler_flag = CompilerFlag {
1350            compiler: tool.path().into(),
1351            flag: flag.into(),
1352        };
1353
1354        if let Some(is_supported) = self
1355            .build_cache
1356            .known_flag_support_status_cache
1357            .read()
1358            .unwrap()
1359            .get(&compiler_flag)
1360            .cloned()
1361        {
1362            return Ok(is_supported);
1363        }
1364
1365        let out_dir = self.get_out_dir()?;
1366        let src = self.ensure_check_file()?;
1367        let obj = out_dir.join("flag_check");
1368
1369        let mut compiler = {
1370            let mut cfg = Build::new();
1371            cfg.flag(flag)
1372                .compiler(tool.path())
1373                .cargo_metadata(self.cargo_output.metadata)
1374                .opt_level(0)
1375                .debug(false)
1376                .cpp(self.cpp)
1377                .cuda(self.cuda)
1378                .inherit_rustflags(false)
1379                .emit_rerun_if_env_changed(self.emit_rerun_if_env_changed);
1380            if let Some(target) = &self.target {
1381                cfg.target(target);
1382            }
1383            if let Some(host) = &self.host {
1384                cfg.host(host);
1385            }
1386            cfg.try_get_compiler()?
1387        };
1388
1389        // Clang uses stderr for verbose output, which yields a false positive
1390        // result if the CFLAGS/CXXFLAGS include -v to aid in debugging.
1391        if compiler.family.verbose_stderr() {
1392            compiler.remove_arg("-v".into());
1393        }
1394        if compiler.is_like_clang() {
1395            // Avoid reporting that the arg is unsupported just because the
1396            // compiler complains that it wasn't used.
1397            compiler.push_cc_arg("-Wno-unused-command-line-argument".into());
1398        }
1399
1400        let mut cmd = compiler.to_command();
1401        let is_arm = matches!(target.arch, "aarch64" | "arm");
1402        command_add_output_file(
1403            &mut cmd,
1404            &obj,
1405            CmdAddOutputFileArgs {
1406                cuda: self.cuda,
1407                is_assembler_msvc: false,
1408                msvc: compiler.is_like_msvc(),
1409                clang: compiler.is_like_clang(),
1410                gnu: compiler.is_like_gnu(),
1411                is_asm: false,
1412                is_arm,
1413            },
1414        );
1415
1416        // Checking for compiler flags does not require linking (and we _must_
1417        // avoid making it do so, since it breaks cross-compilation when the C
1418        // compiler isn't configured to be able to link).
1419        // https://github.com/rust-lang/cc-rs/issues/1423
1420        cmd.arg("-c");
1421
1422        if compiler.supports_path_delimiter() {
1423            cmd.arg("--");
1424        }
1425
1426        cmd.arg(&src);
1427
1428        if compiler.is_like_msvc() {
1429            // On MSVC we need to make sure the LIB directory is included
1430            // so the CRT can be found.
1431            for (key, value) in &tool.env {
1432                if key == "LIB" {
1433                    cmd.env("LIB", value);
1434                    break;
1435                }
1436            }
1437        }
1438
1439        let output = cmd.current_dir(out_dir).output()?;
1440        let is_supported = output.status.success() && output.stderr.is_empty();
1441
1442        self.build_cache
1443            .known_flag_support_status_cache
1444            .write()
1445            .unwrap()
1446            .insert(compiler_flag, is_supported);
1447
1448        Ok(is_supported)
1449    }
1450
1451    /// Run the compiler, generating the file `output`
1452    ///
1453    /// This will return a result instead of panicking; see [`Self::compile()`] for
1454    /// the complete description.
1455    pub fn try_compile(&self, output: &str) -> Result<(), Error> {
1456        let mut output_components = Path::new(output).components();
1457        match (output_components.next(), output_components.next()) {
1458            (Some(Component::Normal(_)), None) => {}
1459            _ => {
1460                return Err(Error::new(
1461                    ErrorKind::InvalidArgument,
1462                    "argument of `compile` must be a single normal path component",
1463                ));
1464            }
1465        }
1466
1467        let (lib_name, gnu_lib_name) = if output.starts_with("lib") && output.ends_with(".a") {
1468            (&output[3..output.len() - 2], output.to_owned())
1469        } else {
1470            let mut gnu = String::with_capacity(5 + output.len());
1471            gnu.push_str("lib");
1472            gnu.push_str(output);
1473            gnu.push_str(".a");
1474            (output, gnu)
1475        };
1476        let dst = self.get_out_dir()?;
1477
1478        let objects = objects_from_files(&self.files, &dst)?;
1479
1480        self.compile_objects(&objects)?;
1481        self.assemble(lib_name, &dst.join(gnu_lib_name), &objects)?;
1482
1483        let target = self.get_target()?;
1484        if target.env == "msvc" {
1485            let compiler = self.get_base_compiler()?;
1486            let atlmfc_lib = compiler
1487                .env()
1488                .iter()
1489                .find(|&(var, _)| var.as_os_str() == OsStr::new("LIB"))
1490                .and_then(|(_, lib_paths)| {
1491                    env::split_paths(lib_paths).find(|path| {
1492                        let sub = Path::new("atlmfc/lib");
1493                        path.ends_with(sub) || path.parent().map_or(false, |p| p.ends_with(sub))
1494                    })
1495                });
1496
1497            if let Some(atlmfc_lib) = atlmfc_lib {
1498                self.cargo_output.print_metadata(&format_args!(
1499                    "cargo:rustc-link-search=native={}",
1500                    atlmfc_lib.display()
1501                ));
1502            }
1503        }
1504
1505        if self.link_lib_modifiers.is_empty() {
1506            self.cargo_output
1507                .print_metadata(&format_args!("cargo:rustc-link-lib=static={lib_name}"));
1508        } else {
1509            self.cargo_output.print_metadata(&format_args!(
1510                "cargo:rustc-link-lib=static:{}={}",
1511                JoinOsStrs {
1512                    slice: &self.link_lib_modifiers,
1513                    delimiter: ','
1514                },
1515                lib_name
1516            ));
1517        }
1518        self.cargo_output.print_metadata(&format_args!(
1519            "cargo:rustc-link-search=native={}",
1520            dst.display()
1521        ));
1522
1523        // Add specific C++ libraries, if enabled.
1524        if self.cpp {
1525            if let Some(stdlib) = self.get_cpp_link_stdlib()? {
1526                if self.cpp_link_stdlib_static {
1527                    self.cargo_output.print_metadata(&format_args!(
1528                        "cargo:rustc-link-lib=static={}",
1529                        stdlib.display()
1530                    ));
1531                } else {
1532                    self.cargo_output
1533                        .print_metadata(&format_args!("cargo:rustc-link-lib={}", stdlib.display()));
1534                }
1535            }
1536            // Link c++ lib from WASI sysroot
1537            if target.arch == "wasm32" {
1538                if target.os == "wasi" {
1539                    if let Ok(wasi_sysroot) = self.wasi_sysroot() {
1540                        self.cargo_output.print_metadata(&format_args!(
1541                            "cargo:rustc-flags=-L {}/lib/{} -lstatic=c++ -lstatic=c++abi",
1542                            Path::new(&wasi_sysroot).display(),
1543                            self.get_raw_target()?
1544                        ));
1545                    }
1546                } else if target.os == "linux" {
1547                    let musl_sysroot = self.wasm_musl_sysroot().unwrap();
1548                    self.cargo_output.print_metadata(&format_args!(
1549                        "cargo:rustc-flags=-L {}/lib -lstatic=c++ -lstatic=c++abi",
1550                        Path::new(&musl_sysroot).display(),
1551                    ));
1552                }
1553            }
1554        }
1555
1556        let cudart = match &self.cudart {
1557            Some(opt) => opt, // {none|shared|static}
1558            None => "none",
1559        };
1560        if cudart != "none" {
1561            if let Some(nvcc) = self.which(&self.get_compiler().path, None) {
1562                // Try to figure out the -L search path. If it fails,
1563                // it's on user to specify one by passing it through
1564                // RUSTFLAGS environment variable.
1565                let mut libtst = false;
1566                let mut libdir = nvcc;
1567                libdir.pop(); // remove 'nvcc'
1568                libdir.push("..");
1569                if cfg!(target_os = "linux") {
1570                    libdir.push("targets");
1571                    libdir.push(format!("{}-linux", target.arch));
1572                    libdir.push("lib");
1573                    libtst = true;
1574                } else if cfg!(target_env = "msvc") {
1575                    libdir.push("lib");
1576                    match target.arch {
1577                        "x86_64" => {
1578                            libdir.push("x64");
1579                            libtst = true;
1580                        }
1581                        "x86" => {
1582                            libdir.push("Win32");
1583                            libtst = true;
1584                        }
1585                        _ => libtst = false,
1586                    }
1587                }
1588                if libtst && libdir.is_dir() {
1589                    self.cargo_output.print_metadata(&format_args!(
1590                        "cargo:rustc-link-search=native={}",
1591                        libdir.to_str().unwrap()
1592                    ));
1593                }
1594
1595                // And now the -l flag.
1596                let lib = match cudart {
1597                    "shared" => "cudart",
1598                    "static" => "cudart_static",
1599                    bad => panic!("unsupported cudart option: {}", bad),
1600                };
1601                self.cargo_output
1602                    .print_metadata(&format_args!("cargo:rustc-link-lib={lib}"));
1603            }
1604        }
1605
1606        Ok(())
1607    }
1608
1609    /// Run the compiler, generating the file `output`
1610    ///
1611    /// # Library name
1612    ///
1613    /// The `output` string argument determines the file name for the compiled
1614    /// library. The Rust compiler will create an assembly named "lib"+output+".a".
1615    /// MSVC will create a file named output+".lib".
1616    ///
1617    /// The choice of `output` is close to arbitrary, but:
1618    ///
1619    /// - must be nonempty,
1620    /// - must not contain a path separator (`/`),
1621    /// - must be unique across all `compile` invocations made by the same build
1622    ///   script.
1623    ///
1624    /// If your build script compiles a single source file, the base name of
1625    /// that source file would usually be reasonable:
1626    ///
1627    /// ```no_run
1628    /// cc::Build::new().file("blobstore.c").compile("blobstore");
1629    /// ```
1630    ///
1631    /// Compiling multiple source files, some people use their crate's name, or
1632    /// their crate's name + "-cc".
1633    ///
1634    /// Otherwise, please use your imagination.
1635    ///
1636    /// For backwards compatibility, if `output` starts with "lib" *and* ends
1637    /// with ".a", a second "lib" prefix and ".a" suffix do not get added on,
1638    /// but this usage is deprecated; please omit `lib` and `.a` in the argument
1639    /// that you pass.
1640    ///
1641    /// # Panics
1642    ///
1643    /// Panics if `output` is not formatted correctly or if one of the underlying
1644    /// compiler commands fails. It can also panic if it fails reading file names
1645    /// or creating directories.
1646    pub fn compile(&self, output: &str) {
1647        if let Err(e) = self.try_compile(output) {
1648            fail(&e.message);
1649        }
1650    }
1651
1652    /// Run the compiler, generating intermediate files, but without linking
1653    /// them into an archive file.
1654    ///
1655    /// This will return a list of compiled object files, in the same order
1656    /// as they were passed in as `file`/`files` methods.
1657    pub fn compile_intermediates(&self) -> Vec<PathBuf> {
1658        match self.try_compile_intermediates() {
1659            Ok(v) => v,
1660            Err(e) => fail(&e.message),
1661        }
1662    }
1663
1664    /// Run the compiler, generating intermediate files, but without linking
1665    /// them into an archive file.
1666    ///
1667    /// This will return a result instead of panicking; see `compile_intermediates()` for the complete description.
1668    pub fn try_compile_intermediates(&self) -> Result<Vec<PathBuf>, Error> {
1669        let dst = self.get_out_dir()?;
1670        let objects = objects_from_files(&self.files, &dst)?;
1671
1672        self.compile_objects(&objects)?;
1673
1674        Ok(objects.into_iter().map(|v| v.dst).collect())
1675    }
1676
1677    #[cfg(feature = "parallel")]
1678    fn compile_objects(&self, objs: &[Object]) -> Result<(), Error> {
1679        use std::cell::Cell;
1680
1681        use parallel::async_executor::{block_on, YieldOnce};
1682
1683        check_disabled()?;
1684
1685        if objs.len() <= 1 {
1686            for obj in objs {
1687                let mut cmd = self.create_compile_object_cmd(obj)?;
1688                run(&mut cmd, &self.cargo_output)?;
1689            }
1690
1691            return Ok(());
1692        }
1693
1694        // Limit our parallelism globally with a jobserver.
1695        let mut tokens = parallel::job_token::ActiveJobTokenServer::new();
1696
1697        // When compiling objects in parallel we do a few dirty tricks to speed
1698        // things up:
1699        //
1700        // * First is that we use the `jobserver` crate to limit the parallelism
1701        //   of this build script. The `jobserver` crate will use a jobserver
1702        //   configured by Cargo for build scripts to ensure that parallelism is
1703        //   coordinated across C compilations and Rust compilations. Before we
1704        //   compile anything we make sure to wait until we acquire a token.
1705        //
1706        //   Note that this jobserver is cached globally so we only used one per
1707        //   process and only worry about creating it once.
1708        //
1709        // * Next we use spawn the process to actually compile objects in
1710        //   parallel after we've acquired a token to perform some work
1711        //
1712        // With all that in mind we compile all objects in a loop here, after we
1713        // acquire the appropriate tokens, Once all objects have been compiled
1714        // we wait on all the processes and propagate the results of compilation.
1715
1716        let pendings =
1717            Cell::new(Vec::<(Command, KillOnDrop, parallel::job_token::JobToken)>::new());
1718        let is_disconnected = Cell::new(false);
1719        let has_made_progress = Cell::new(false);
1720
1721        let wait_future = async {
1722            let mut error = None;
1723            // Buffer the stdout
1724            let mut stdout = io::BufWriter::with_capacity(128, io::stdout());
1725
1726            loop {
1727                // If the other end of the pipe is already disconnected, then we're not gonna get any new jobs,
1728                // so it doesn't make sense to reuse the tokens; in fact,
1729                // releasing them as soon as possible (once we know that the other end is disconnected) is beneficial.
1730                // Imagine that the last file built takes an hour to finish; in this scenario,
1731                // by not releasing the tokens before that last file is done we would effectively block other processes from
1732                // starting sooner - even though we only need one token for that last file, not N others that were acquired.
1733
1734                let mut pendings_is_empty = false;
1735
1736                cell_update(&pendings, |mut pendings| {
1737                    // Try waiting on them.
1738                    pendings.retain_mut(|(cmd, child, _token)| {
1739                        match try_wait_on_child(cmd, &mut child.0, &mut stdout, &mut child.1) {
1740                            Ok(Some(())) => {
1741                                // Task done, remove the entry
1742                                has_made_progress.set(true);
1743                                false
1744                            }
1745                            Ok(None) => true, // Task still not finished, keep the entry
1746                            Err(err) => {
1747                                // Task fail, remove the entry.
1748                                // Since we can only return one error, log the error to make
1749                                // sure users always see all the compilation failures.
1750                                has_made_progress.set(true);
1751
1752                                if self.cargo_output.warnings {
1753                                    let _ = writeln!(stdout, "cargo:warning={}", err);
1754                                }
1755                                error = Some(err);
1756
1757                                false
1758                            }
1759                        }
1760                    });
1761                    pendings_is_empty = pendings.is_empty();
1762                    pendings
1763                });
1764
1765                if pendings_is_empty && is_disconnected.get() {
1766                    break if let Some(err) = error {
1767                        Err(err)
1768                    } else {
1769                        Ok(())
1770                    };
1771                }
1772
1773                YieldOnce::default().await;
1774            }
1775        };
1776        let spawn_future = async {
1777            for obj in objs {
1778                let mut cmd = self.create_compile_object_cmd(obj)?;
1779                let token = tokens.acquire().await?;
1780                let mut child = spawn(&mut cmd, &self.cargo_output)?;
1781                let mut stderr_forwarder = StderrForwarder::new(&mut child);
1782                stderr_forwarder.set_non_blocking()?;
1783
1784                cell_update(&pendings, |mut pendings| {
1785                    pendings.push((cmd, KillOnDrop(child, stderr_forwarder), token));
1786                    pendings
1787                });
1788
1789                has_made_progress.set(true);
1790            }
1791            is_disconnected.set(true);
1792
1793            Ok::<_, Error>(())
1794        };
1795
1796        return block_on(wait_future, spawn_future, &has_made_progress);
1797
1798        struct KillOnDrop(Child, StderrForwarder);
1799
1800        impl Drop for KillOnDrop {
1801            fn drop(&mut self) {
1802                let child = &mut self.0;
1803
1804                child.kill().ok();
1805            }
1806        }
1807
1808        fn cell_update<T, F>(cell: &Cell<T>, f: F)
1809        where
1810            T: Default,
1811            F: FnOnce(T) -> T,
1812        {
1813            let old = cell.take();
1814            let new = f(old);
1815            cell.set(new);
1816        }
1817    }
1818
1819    #[cfg(not(feature = "parallel"))]
1820    fn compile_objects(&self, objs: &[Object]) -> Result<(), Error> {
1821        check_disabled()?;
1822
1823        for obj in objs {
1824            let mut cmd = self.create_compile_object_cmd(obj)?;
1825            run(&mut cmd, &self.cargo_output)?;
1826        }
1827
1828        Ok(())
1829    }
1830
1831    fn create_compile_object_cmd(&self, obj: &Object) -> Result<Command, Error> {
1832        let asm_ext = AsmFileExt::from_path(&obj.src);
1833        let is_asm = asm_ext.is_some();
1834        let target = self.get_target()?;
1835        let msvc = target.env == "msvc";
1836        let compiler = self.try_get_compiler()?;
1837
1838        let is_assembler_msvc = msvc && asm_ext == Some(AsmFileExt::DotAsm);
1839        let mut cmd = if is_assembler_msvc {
1840            self.msvc_macro_assembler()?
1841        } else {
1842            let mut cmd = compiler.to_command();
1843            for (a, b) in self.env.iter() {
1844                cmd.env(a, b);
1845            }
1846            cmd
1847        };
1848        let is_arm = matches!(target.arch, "aarch64" | "arm");
1849        command_add_output_file(
1850            &mut cmd,
1851            &obj.dst,
1852            CmdAddOutputFileArgs {
1853                cuda: self.cuda,
1854                is_assembler_msvc,
1855                msvc: compiler.is_like_msvc(),
1856                clang: compiler.is_like_clang(),
1857                gnu: compiler.is_like_gnu(),
1858                is_asm,
1859                is_arm,
1860            },
1861        );
1862        // armasm and armasm64 don't requrie -c option
1863        if !is_assembler_msvc || !is_arm {
1864            cmd.arg("-c");
1865        }
1866        if self.cuda && self.cuda_file_count() > 1 {
1867            cmd.arg("--device-c");
1868        }
1869        if is_asm {
1870            cmd.args(self.asm_flags.iter().map(std::ops::Deref::deref));
1871        }
1872
1873        if compiler.supports_path_delimiter() && !is_assembler_msvc {
1874            // #513: For `clang-cl`, separate flags/options from the input file.
1875            // When cross-compiling macOS -> Windows, this avoids interpreting
1876            // common `/Users/...` paths as the `/U` flag and triggering
1877            // `-Wslash-u-filename` warning.
1878            cmd.arg("--");
1879        }
1880        cmd.arg(&obj.src);
1881
1882        if cfg!(target_os = "macos") {
1883            self.fix_env_for_apple_os(&mut cmd)?;
1884        }
1885
1886        Ok(cmd)
1887    }
1888
1889    /// This will return a result instead of panicking; see [`Self::expand()`] for
1890    /// the complete description.
1891    pub fn try_expand(&self) -> Result<Vec<u8>, Error> {
1892        let compiler = self.try_get_compiler()?;
1893        let mut cmd = compiler.to_command();
1894        for (a, b) in self.env.iter() {
1895            cmd.env(a, b);
1896        }
1897        cmd.arg("-E");
1898
1899        assert!(
1900            self.files.len() <= 1,
1901            "Expand may only be called for a single file"
1902        );
1903
1904        let is_asm = self
1905            .files
1906            .iter()
1907            .map(std::ops::Deref::deref)
1908            .find_map(AsmFileExt::from_path)
1909            .is_some();
1910
1911        if compiler.family == (ToolFamily::Msvc { clang_cl: true }) && !is_asm {
1912            // #513: For `clang-cl`, separate flags/options from the input file.
1913            // When cross-compiling macOS -> Windows, this avoids interpreting
1914            // common `/Users/...` paths as the `/U` flag and triggering
1915            // `-Wslash-u-filename` warning.
1916            cmd.arg("--");
1917        }
1918
1919        cmd.args(self.files.iter().map(std::ops::Deref::deref));
1920
1921        run_output(&mut cmd, &self.cargo_output)
1922    }
1923
1924    /// Run the compiler, returning the macro-expanded version of the input files.
1925    ///
1926    /// This is only relevant for C and C++ files.
1927    ///
1928    /// # Panics
1929    /// Panics if more than one file is present in the config, or if compiler
1930    /// path has an invalid file name.
1931    ///
1932    /// # Example
1933    /// ```no_run
1934    /// let out = cc::Build::new().file("src/foo.c").expand();
1935    /// ```
1936    pub fn expand(&self) -> Vec<u8> {
1937        match self.try_expand() {
1938            Err(e) => fail(&e.message),
1939            Ok(v) => v,
1940        }
1941    }
1942
1943    /// Get the compiler that's in use for this configuration.
1944    ///
1945    /// This function will return a `Tool` which represents the culmination
1946    /// of this configuration at a snapshot in time. The returned compiler can
1947    /// be inspected (e.g. the path, arguments, environment) to forward along to
1948    /// other tools, or the `to_command` method can be used to invoke the
1949    /// compiler itself.
1950    ///
1951    /// This method will take into account all configuration such as debug
1952    /// information, optimization level, include directories, defines, etc.
1953    /// Additionally, the compiler binary in use follows the standard
1954    /// conventions for this path, e.g. looking at the explicitly set compiler,
1955    /// environment variables (a number of which are inspected here), and then
1956    /// falling back to the default configuration.
1957    ///
1958    /// # Panics
1959    ///
1960    /// Panics if an error occurred while determining the architecture.
1961    pub fn get_compiler(&self) -> Tool {
1962        match self.try_get_compiler() {
1963            Ok(tool) => tool,
1964            Err(e) => fail(&e.message),
1965        }
1966    }
1967
1968    /// Get the compiler that's in use for this configuration.
1969    ///
1970    /// This will return a result instead of panicking; see
1971    /// [`get_compiler()`](Self::get_compiler) for the complete description.
1972    pub fn try_get_compiler(&self) -> Result<Tool, Error> {
1973        let opt_level = self.get_opt_level()?;
1974        let target = self.get_target()?;
1975
1976        let mut cmd = self.get_base_compiler()?;
1977
1978        // The flags below are added in roughly the following order:
1979        // 1. Default flags
1980        //   - Controlled by `cc-rs`.
1981        // 2. `rustc`-inherited flags
1982        //   - Controlled by `rustc`.
1983        // 3. Builder flags
1984        //   - Controlled by the developer using `cc-rs` in e.g. their `build.rs`.
1985        // 4. Environment flags
1986        //   - Controlled by the end user.
1987        //
1988        // This is important to allow later flags to override previous ones.
1989
1990        // Copied from <https://github.com/rust-lang/rust/blob/5db81020006d2920fc9c62ffc0f4322f90bffa04/compiler/rustc_codegen_ssa/src/back/linker.rs#L27-L38>
1991        //
1992        // Disables non-English messages from localized linkers.
1993        // Such messages may cause issues with text encoding on Windows
1994        // and prevent inspection of msvc output in case of errors, which we occasionally do.
1995        // This should be acceptable because other messages from rustc are in English anyway,
1996        // and may also be desirable to improve searchability of the compiler diagnostics.
1997        if matches!(cmd.family, ToolFamily::Msvc { clang_cl: false }) {
1998            cmd.env.push(("VSLANG".into(), "1033".into()));
1999        } else {
2000            cmd.env.push(("LC_ALL".into(), "C".into()));
2001        }
2002
2003        // Disable default flag generation via `no_default_flags` or environment variable
2004        let no_defaults = self.no_default_flags || self.getenv_boolean("CRATE_CC_NO_DEFAULTS");
2005        if !no_defaults {
2006            self.add_default_flags(&mut cmd, &target, &opt_level)?;
2007        }
2008
2009        // Specify various flags that are not considered part of the default flags above.
2010        // FIXME(madsmtm): Should these be considered part of the defaults? If no, why not?
2011        if let Some(ref std) = self.std {
2012            let separator = match cmd.family {
2013                ToolFamily::Msvc { .. } => ':',
2014                ToolFamily::Gnu | ToolFamily::Clang { .. } => '=',
2015            };
2016            cmd.push_cc_arg(format!("-std{separator}{std}").into());
2017        }
2018        for directory in self.include_directories.iter() {
2019            cmd.args.push("-I".into());
2020            cmd.args.push(directory.as_os_str().into());
2021        }
2022        if self.warnings_into_errors {
2023            let warnings_to_errors_flag = cmd.family.warnings_to_errors_flag().into();
2024            cmd.push_cc_arg(warnings_to_errors_flag);
2025        }
2026
2027        // If warnings and/or extra_warnings haven't been explicitly set,
2028        // then we set them only if the environment doesn't already have
2029        // CFLAGS/CXXFLAGS, since those variables presumably already contain
2030        // the desired set of warnings flags.
2031        let envflags = self.envflags(if self.cpp { "CXXFLAGS" } else { "CFLAGS" })?;
2032        if self.warnings.unwrap_or(envflags.is_none()) {
2033            let wflags = cmd.family.warnings_flags().into();
2034            cmd.push_cc_arg(wflags);
2035        }
2036        if self.extra_warnings.unwrap_or(envflags.is_none()) {
2037            if let Some(wflags) = cmd.family.extra_warnings_flags() {
2038                cmd.push_cc_arg(wflags.into());
2039            }
2040        }
2041
2042        // Add cc flags inherited from matching rustc flags.
2043        if self.inherit_rustflags {
2044            self.add_inherited_rustflags(&mut cmd, &target)?;
2045        }
2046
2047        // Set flags configured in the builder (do this second-to-last, to allow these to override
2048        // everything above).
2049        for flag in self.flags.iter() {
2050            cmd.args.push((**flag).into());
2051        }
2052        for flag in self.flags_supported.iter() {
2053            if self
2054                .is_flag_supported_inner(flag, &cmd, &target)
2055                .unwrap_or(false)
2056            {
2057                cmd.push_cc_arg((**flag).into());
2058            }
2059        }
2060        for (key, value) in self.definitions.iter() {
2061            if let Some(ref value) = *value {
2062                cmd.args.push(format!("-D{key}={value}").into());
2063            } else {
2064                cmd.args.push(format!("-D{key}").into());
2065            }
2066        }
2067
2068        // Set flags from the environment (do this last, to allow these to override everything else).
2069        if let Some(flags) = &envflags {
2070            for arg in flags {
2071                cmd.push_cc_arg(arg.into());
2072            }
2073        }
2074
2075        Ok(cmd)
2076    }
2077
2078    fn add_default_flags(
2079        &self,
2080        cmd: &mut Tool,
2081        target: &TargetInfo<'_>,
2082        opt_level: &str,
2083    ) -> Result<(), Error> {
2084        let raw_target = self.get_raw_target()?;
2085        // Non-target flags
2086        // If the flag is not conditioned on target variable, it belongs here :)
2087        match cmd.family {
2088            ToolFamily::Msvc { .. } => {
2089                cmd.push_cc_arg("-nologo".into());
2090
2091                let crt_flag = match self.static_crt {
2092                    Some(true) => "-MT",
2093                    Some(false) => "-MD",
2094                    None => {
2095                        let features = self.getenv("CARGO_CFG_TARGET_FEATURE");
2096                        let features = features.as_deref().unwrap_or_default();
2097                        if features.to_string_lossy().contains("crt-static") {
2098                            "-MT"
2099                        } else {
2100                            "-MD"
2101                        }
2102                    }
2103                };
2104                cmd.push_cc_arg(crt_flag.into());
2105
2106                match opt_level {
2107                    // Msvc uses /O1 to enable all optimizations that minimize code size.
2108                    "z" | "s" | "1" => cmd.push_opt_unless_duplicate("-O1".into()),
2109                    // -O3 is a valid value for gcc and clang compilers, but not msvc. Cap to /O2.
2110                    "2" | "3" => cmd.push_opt_unless_duplicate("-O2".into()),
2111                    _ => {}
2112                }
2113            }
2114            ToolFamily::Gnu | ToolFamily::Clang { .. } => {
2115                // arm-linux-androideabi-gcc 4.8 shipped with Android NDK does
2116                // not support '-Oz'
2117                if opt_level == "z" && !cmd.is_like_clang() {
2118                    cmd.push_opt_unless_duplicate("-Os".into());
2119                } else {
2120                    cmd.push_opt_unless_duplicate(format!("-O{opt_level}").into());
2121                }
2122
2123                if cmd.is_like_clang() && target.os == "android" {
2124                    // For compatibility with code that doesn't use pre-defined `__ANDROID__` macro.
2125                    // If compiler used via ndk-build or cmake (officially supported build methods)
2126                    // this macros is defined.
2127                    // See https://android.googlesource.com/platform/ndk/+/refs/heads/ndk-release-r21/build/cmake/android.toolchain.cmake#456
2128                    // https://android.googlesource.com/platform/ndk/+/refs/heads/ndk-release-r21/build/core/build-binary.mk#141
2129                    cmd.push_opt_unless_duplicate("-DANDROID".into());
2130                }
2131
2132                if target.os != "ios"
2133                    && target.os != "watchos"
2134                    && target.os != "tvos"
2135                    && target.os != "visionos"
2136                {
2137                    cmd.push_cc_arg("-ffunction-sections".into());
2138                    cmd.push_cc_arg("-fdata-sections".into());
2139                }
2140                // Disable generation of PIC on bare-metal for now: rust-lld doesn't support this yet
2141                //
2142                // `rustc` also defaults to disable PIC on WASM:
2143                // <https://github.com/rust-lang/rust/blob/1.82.0/compiler/rustc_target/src/spec/base/wasm.rs#L101-L108>
2144                if self.pic.unwrap_or(
2145                    target.os != "windows"
2146                        && target.os != "none"
2147                        && target.os != "uefi"
2148                        && target.arch != "wasm32"
2149                        && target.arch != "wasm64",
2150                ) {
2151                    cmd.push_cc_arg("-fPIC".into());
2152                    // PLT only applies if code is compiled with PIC support,
2153                    // and only for ELF targets.
2154                    if (target.os == "linux" || target.os == "android")
2155                        && !self.use_plt.unwrap_or(true)
2156                    {
2157                        cmd.push_cc_arg("-fno-plt".into());
2158                    }
2159                }
2160                if target.arch == "wasm32" || target.arch == "wasm64" {
2161                    // WASI does not support exceptions yet.
2162                    // https://github.com/WebAssembly/exception-handling
2163                    //
2164                    // `rustc` also defaults to (currently) disable exceptions
2165                    // on all WASM targets:
2166                    // <https://github.com/rust-lang/rust/blob/1.82.0/compiler/rustc_target/src/spec/base/wasm.rs#L72-L77>
2167                    cmd.push_cc_arg("-fno-exceptions".into());
2168                }
2169
2170                if target.os == "wasi" {
2171                    // Link clang sysroot
2172                    if let Ok(wasi_sysroot) = self.wasi_sysroot() {
2173                        cmd.push_cc_arg(
2174                            format!("--sysroot={}", Path::new(&wasi_sysroot).display()).into(),
2175                        );
2176                    }
2177
2178                    // FIXME(madsmtm): Read from `target_features` instead?
2179                    if raw_target.contains("threads") {
2180                        cmd.push_cc_arg("-pthread".into());
2181                    }
2182                }
2183
2184                if target.os == "nto" {
2185                    // Select the target with `-V`, see qcc documentation:
2186                    // QNX 7.1: https://www.qnx.com/developers/docs/7.1/index.html#com.qnx.doc.neutrino.utilities/topic/q/qcc.html
2187                    // QNX 8.0: https://www.qnx.com/developers/docs/8.0/com.qnx.doc.neutrino.utilities/topic/q/qcc.html
2188                    // This assumes qcc/q++ as compiler, which is currently the only supported compiler for QNX.
2189                    // See for details: https://github.com/rust-lang/cc-rs/pull/1319
2190                    let arg = match target.full_arch {
2191                        "x86" | "i586" => "-Vgcc_ntox86_cxx",
2192                        "aarch64" => "-Vgcc_ntoaarch64le_cxx",
2193                        "x86_64" => "-Vgcc_ntox86_64_cxx",
2194                        _ => {
2195                            return Err(Error::new(
2196                                ErrorKind::InvalidTarget,
2197                                format!("Unknown architecture for Neutrino QNX: {}", target.arch),
2198                            ))
2199                        }
2200                    };
2201                    cmd.push_cc_arg(arg.into());
2202                }
2203            }
2204        }
2205
2206        if self.get_debug() {
2207            if self.cuda {
2208                // NVCC debug flag
2209                cmd.args.push("-G".into());
2210            }
2211            let family = cmd.family;
2212            family.add_debug_flags(cmd, self.get_dwarf_version());
2213        }
2214
2215        if self.get_force_frame_pointer() {
2216            let family = cmd.family;
2217            family.add_force_frame_pointer(cmd);
2218        }
2219
2220        if !cmd.is_like_msvc() {
2221            if target.arch == "x86" {
2222                cmd.args.push("-m32".into());
2223            } else if target.abi == "x32" {
2224                cmd.args.push("-mx32".into());
2225            } else if target.os == "aix" {
2226                if cmd.family == ToolFamily::Gnu {
2227                    cmd.args.push("-maix64".into());
2228                } else {
2229                    cmd.args.push("-m64".into());
2230                }
2231            } else if target.arch == "x86_64" || target.arch == "powerpc64" {
2232                cmd.args.push("-m64".into());
2233            }
2234        }
2235
2236        // Target flags
2237        match cmd.family {
2238            ToolFamily::Clang { .. } => {
2239                if !(cmd.has_internal_target_arg
2240                    || (target.os == "android"
2241                        && android_clang_compiler_uses_target_arg_internally(&cmd.path)))
2242                {
2243                    if target.os == "freebsd" {
2244                        // FreeBSD only supports C++11 and above when compiling against libc++
2245                        // (available from FreeBSD 10 onwards). Under FreeBSD, clang uses libc++ by
2246                        // default on FreeBSD 10 and newer unless `--target` is manually passed to
2247                        // the compiler, in which case its default behavior differs:
2248                        // * If --target=xxx-unknown-freebsdX(.Y) is specified and X is greater than
2249                        //   or equal to 10, clang++ uses libc++
2250                        // * If --target=xxx-unknown-freebsd is specified (without a version),
2251                        //   clang++ cannot assume libc++ is available and reverts to a default of
2252                        //   libstdc++ (this behavior was changed in llvm 14).
2253                        //
2254                        // This breaks C++11 (or greater) builds if targeting FreeBSD with the
2255                        // generic xxx-unknown-freebsd target on clang 13 or below *without*
2256                        // explicitly specifying that libc++ should be used.
2257                        // When cross-compiling, we can't infer from the rust/cargo target name
2258                        // which major version of FreeBSD we are targeting, so we need to make sure
2259                        // that libc++ is used (unless the user has explicitly specified otherwise).
2260                        // There's no compelling reason to use a different approach when compiling
2261                        // natively.
2262                        if self.cpp && self.cpp_set_stdlib.is_none() {
2263                            cmd.push_cc_arg("-stdlib=libc++".into());
2264                        }
2265                    } else if target.arch == "wasm32" && target.os == "linux" {
2266                        for x in &[
2267                            "atomics",
2268                            "bulk-memory",
2269                            "mutable-globals",
2270                            "sign-ext",
2271                            "exception-handling",
2272                        ] {
2273                            cmd.push_cc_arg(format!("-m{x}").into());
2274                        }
2275                        for x in &["wasm-exceptions", "declspec"] {
2276                            cmd.push_cc_arg(format!("-f{x}").into());
2277                        }
2278                        let musl_sysroot = self.wasm_musl_sysroot().unwrap();
2279                        cmd.push_cc_arg(
2280                            format!("--sysroot={}", Path::new(&musl_sysroot).display()).into(),
2281                        );
2282                        cmd.push_cc_arg("-pthread".into());
2283                    }
2284                    // Pass `--target` with the LLVM target to configure Clang for cross-compiling.
2285                    //
2286                    // This is **required** for cross-compilation, as it's the only flag that
2287                    // consistently forces Clang to change the "toolchain" that is responsible for
2288                    // parsing target-specific flags:
2289                    // https://github.com/rust-lang/cc-rs/issues/1388
2290                    // https://github.com/llvm/llvm-project/blob/llvmorg-19.1.7/clang/lib/Driver/Driver.cpp#L1359-L1360
2291                    // https://github.com/llvm/llvm-project/blob/llvmorg-19.1.7/clang/lib/Driver/Driver.cpp#L6347-L6532
2292                    //
2293                    // This can be confusing, because on e.g. host macOS, you can usually get by
2294                    // with `-arch` and `-mtargetos=`. But that only works because the _default_
2295                    // toolchain is `Darwin`, which enables parsing of darwin-specific options.
2296                    //
2297                    // NOTE: In the past, we passed the deployment version in here on all Apple
2298                    // targets, but versioned targets were found to have poor compatibility with
2299                    // older versions of Clang, especially when it comes to configuration files:
2300                    // https://github.com/rust-lang/cc-rs/issues/1278
2301                    //
2302                    // So instead, we pass the deployment target with `-m*-version-min=`, and only
2303                    // pass it here on visionOS and Mac Catalyst where that option does not exist:
2304                    // https://github.com/rust-lang/cc-rs/issues/1383
2305                    let version = if target.os == "visionos" || target.abi == "macabi" {
2306                        Some(self.apple_deployment_target(target))
2307                    } else {
2308                        None
2309                    };
2310
2311                    let clang_target =
2312                        target.llvm_target(&self.get_raw_target()?, version.as_deref());
2313                    cmd.push_cc_arg(format!("--target={clang_target}").into());
2314                }
2315            }
2316            ToolFamily::Msvc { clang_cl } => {
2317                // This is an undocumented flag from MSVC but helps with making
2318                // builds more reproducible by avoiding putting timestamps into
2319                // files.
2320                cmd.push_cc_arg("-Brepro".into());
2321
2322                if clang_cl {
2323                    if target.arch == "x86_64" {
2324                        cmd.push_cc_arg("-m64".into());
2325                    } else if target.arch == "x86" {
2326                        cmd.push_cc_arg("-m32".into());
2327                        // See
2328                        // <https://learn.microsoft.com/en-us/cpp/build/reference/arch-x86?view=msvc-170>.
2329                        //
2330                        // NOTE: Rust officially supported Windows targets all require SSE2 as part
2331                        // of baseline target features.
2332                        //
2333                        // NOTE: The same applies for STL. See: -
2334                        // <https://github.com/microsoft/STL/issues/3922>, and -
2335                        // <https://github.com/microsoft/STL/pull/4741>.
2336                        cmd.push_cc_arg("-arch:SSE2".into());
2337                    } else {
2338                        cmd.push_cc_arg(
2339                            format!(
2340                                "--target={}",
2341                                target.llvm_target(&self.get_raw_target()?, None)
2342                            )
2343                            .into(),
2344                        );
2345                    }
2346                } else if target.full_arch == "i586" {
2347                    cmd.push_cc_arg("-arch:IA32".into());
2348                } else if target.full_arch == "arm64ec" {
2349                    cmd.push_cc_arg("-arm64EC".into());
2350                }
2351                // There is a check in corecrt.h that will generate a
2352                // compilation error if
2353                // _ARM_WINAPI_PARTITION_DESKTOP_SDK_AVAILABLE is
2354                // not defined to 1. The check was added in Windows
2355                // 8 days because only store apps were allowed on ARM.
2356                // This changed with the release of Windows 10 IoT Core.
2357                // The check will be going away in future versions of
2358                // the SDK, but for all released versions of the
2359                // Windows SDK it is required.
2360                if target.arch == "arm" {
2361                    cmd.args
2362                        .push("-D_ARM_WINAPI_PARTITION_DESKTOP_SDK_AVAILABLE=1".into());
2363                }
2364            }
2365            ToolFamily::Gnu => {
2366                if target.vendor == "kmc" {
2367                    cmd.args.push("-finput-charset=utf-8".into());
2368                }
2369
2370                if self.static_flag.is_none() {
2371                    let features = self.getenv("CARGO_CFG_TARGET_FEATURE");
2372                    let features = features.as_deref().unwrap_or_default();
2373                    if features.to_string_lossy().contains("crt-static") {
2374                        cmd.args.push("-static".into());
2375                    }
2376                }
2377
2378                // armv7 targets get to use armv7 instructions
2379                if (target.full_arch.starts_with("armv7")
2380                    || target.full_arch.starts_with("thumbv7"))
2381                    && (target.os == "linux" || target.vendor == "kmc")
2382                {
2383                    cmd.args.push("-march=armv7-a".into());
2384
2385                    if target.abi == "eabihf" {
2386                        // lowest common denominator FPU
2387                        cmd.args.push("-mfpu=vfpv3-d16".into());
2388                        cmd.args.push("-mfloat-abi=hard".into());
2389                    }
2390                }
2391
2392                // (x86 Android doesn't say "eabi")
2393                if target.os == "android" && target.full_arch.contains("v7") {
2394                    cmd.args.push("-march=armv7-a".into());
2395                    cmd.args.push("-mthumb".into());
2396                    if !target.full_arch.contains("neon") {
2397                        // On android we can guarantee some extra float instructions
2398                        // (specified in the android spec online)
2399                        // NEON guarantees even more; see below.
2400                        cmd.args.push("-mfpu=vfpv3-d16".into());
2401                    }
2402                    cmd.args.push("-mfloat-abi=softfp".into());
2403                }
2404
2405                if target.full_arch.contains("neon") {
2406                    cmd.args.push("-mfpu=neon-vfpv4".into());
2407                }
2408
2409                if target.full_arch == "armv4t" && target.os == "linux" {
2410                    cmd.args.push("-march=armv4t".into());
2411                    cmd.args.push("-marm".into());
2412                    cmd.args.push("-mfloat-abi=soft".into());
2413                }
2414
2415                if target.full_arch == "armv5te" && target.os == "linux" {
2416                    cmd.args.push("-march=armv5te".into());
2417                    cmd.args.push("-marm".into());
2418                    cmd.args.push("-mfloat-abi=soft".into());
2419                }
2420
2421                // For us arm == armv6 by default
2422                if target.full_arch == "arm" && target.os == "linux" {
2423                    cmd.args.push("-march=armv6".into());
2424                    cmd.args.push("-marm".into());
2425                    if target.abi == "eabihf" {
2426                        cmd.args.push("-mfpu=vfp".into());
2427                    } else {
2428                        cmd.args.push("-mfloat-abi=soft".into());
2429                    }
2430                }
2431
2432                // Turn codegen down on i586 to avoid some instructions.
2433                if target.full_arch == "i586" && target.os == "linux" {
2434                    cmd.args.push("-march=pentium".into());
2435                }
2436
2437                // Set codegen level for i686 correctly
2438                if target.full_arch == "i686" && target.os == "linux" {
2439                    cmd.args.push("-march=i686".into());
2440                }
2441
2442                // Looks like `musl-gcc` makes it hard for `-m32` to make its way
2443                // all the way to the linker, so we need to actually instruct the
2444                // linker that we're generating 32-bit executables as well. This'll
2445                // typically only be used for build scripts which transitively use
2446                // these flags that try to compile executables.
2447                if target.arch == "x86" && target.env == "musl" {
2448                    cmd.args.push("-Wl,-melf_i386".into());
2449                }
2450
2451                if target.arch == "arm" && target.os == "none" && target.abi == "eabihf" {
2452                    cmd.args.push("-mfloat-abi=hard".into())
2453                }
2454                if target.full_arch.starts_with("thumb") {
2455                    cmd.args.push("-mthumb".into());
2456                }
2457                if target.full_arch.starts_with("thumbv6m") {
2458                    cmd.args.push("-march=armv6s-m".into());
2459                }
2460                if target.full_arch.starts_with("thumbv7em") {
2461                    cmd.args.push("-march=armv7e-m".into());
2462
2463                    if target.abi == "eabihf" {
2464                        cmd.args.push("-mfpu=fpv4-sp-d16".into())
2465                    }
2466                }
2467                if target.full_arch.starts_with("thumbv7m") {
2468                    cmd.args.push("-march=armv7-m".into());
2469                }
2470                if target.full_arch.starts_with("thumbv8m.base") {
2471                    cmd.args.push("-march=armv8-m.base".into());
2472                }
2473                if target.full_arch.starts_with("thumbv8m.main") {
2474                    cmd.args.push("-march=armv8-m.main".into());
2475
2476                    if target.abi == "eabihf" {
2477                        cmd.args.push("-mfpu=fpv5-sp-d16".into())
2478                    }
2479                }
2480                if target.full_arch.starts_with("armebv7r") | target.full_arch.starts_with("armv7r")
2481                {
2482                    if target.full_arch.starts_with("armeb") {
2483                        cmd.args.push("-mbig-endian".into());
2484                    } else {
2485                        cmd.args.push("-mlittle-endian".into());
2486                    }
2487
2488                    // ARM mode
2489                    cmd.args.push("-marm".into());
2490
2491                    // R Profile
2492                    cmd.args.push("-march=armv7-r".into());
2493
2494                    if target.abi == "eabihf" {
2495                        // lowest common denominator FPU
2496                        // (see Cortex-R4 technical reference manual)
2497                        cmd.args.push("-mfpu=vfpv3-d16".into())
2498                    }
2499                }
2500                if target.full_arch.starts_with("armv7a") {
2501                    cmd.args.push("-march=armv7-a".into());
2502
2503                    if target.abi == "eabihf" {
2504                        // lowest common denominator FPU
2505                        cmd.args.push("-mfpu=vfpv3-d16".into());
2506                    }
2507                }
2508                if target.arch == "riscv32" || target.arch == "riscv64" {
2509                    // get the 32i/32imac/32imc/64gc/64imac/... part
2510                    let arch = &target.full_arch[5..];
2511                    if arch.starts_with("64") {
2512                        if matches!(target.os, "linux" | "freebsd" | "netbsd") {
2513                            cmd.args.push(("-march=rv64gc").into());
2514                            cmd.args.push("-mabi=lp64d".into());
2515                        } else {
2516                            cmd.args.push(("-march=rv".to_owned() + arch).into());
2517                            cmd.args.push("-mabi=lp64".into());
2518                        }
2519                    } else if arch.starts_with("32") {
2520                        if target.os == "linux" {
2521                            cmd.args.push(("-march=rv32gc").into());
2522                            cmd.args.push("-mabi=ilp32d".into());
2523                        } else {
2524                            cmd.args.push(("-march=rv".to_owned() + arch).into());
2525                            cmd.args.push("-mabi=ilp32".into());
2526                        }
2527                    } else {
2528                        cmd.args.push("-mcmodel=medany".into());
2529                    }
2530                }
2531            }
2532        }
2533
2534        if target.os == "solaris" || target.os == "illumos" {
2535            // On Solaris and illumos, multi-threaded C programs must be built with `_REENTRANT`
2536            // defined. This configures headers to define APIs appropriately for multi-threaded
2537            // use. This is documented in threads(7), see also https://illumos.org/man/7/threads.
2538            //
2539            // If C code is compiled without multi-threading support but does use multiple threads,
2540            // incorrect behavior may result. One extreme example is that on some systems the
2541            // global errno may be at the same address as the process' first thread's errno; errno
2542            // clobbering may occur to disastrous effect. Conversely, if _REENTRANT is defined
2543            // while it is not actually needed, system headers may define some APIs suboptimally
2544            // but will not result in incorrect behavior. Other code *should* be reasonable under
2545            // such conditions.
2546            //
2547            // We're typically building C code to eventually link into a Rust program. Many Rust
2548            // programs are multi-threaded in some form. So, set the flag by default.
2549            cmd.args.push("-D_REENTRANT".into());
2550        }
2551
2552        if target.vendor == "apple" {
2553            self.apple_flags(cmd)?;
2554        }
2555
2556        if self.static_flag.unwrap_or(false) {
2557            cmd.args.push("-static".into());
2558        }
2559        if self.shared_flag.unwrap_or(false) {
2560            cmd.args.push("-shared".into());
2561        }
2562
2563        if self.cpp {
2564            match (self.cpp_set_stdlib.as_ref(), cmd.family) {
2565                (None, _) => {}
2566                (Some(stdlib), ToolFamily::Gnu) | (Some(stdlib), ToolFamily::Clang { .. }) => {
2567                    cmd.push_cc_arg(format!("-stdlib=lib{stdlib}").into());
2568                }
2569                _ => {
2570                    self.cargo_output.print_warning(&format_args!("cpp_set_stdlib is specified, but the {:?} compiler does not support this option, ignored", cmd.family));
2571                }
2572            }
2573        }
2574
2575        Ok(())
2576    }
2577
2578    fn add_inherited_rustflags(
2579        &self,
2580        cmd: &mut Tool,
2581        target: &TargetInfo<'_>,
2582    ) -> Result<(), Error> {
2583        let env_os = match self.getenv("CARGO_ENCODED_RUSTFLAGS") {
2584            Some(env) => env,
2585            // No encoded RUSTFLAGS -> nothing to do
2586            None => return Ok(()),
2587        };
2588
2589        let env = env_os.to_string_lossy();
2590        let codegen_flags = RustcCodegenFlags::parse(&env)?;
2591        codegen_flags.cc_flags(self, cmd, target);
2592        Ok(())
2593    }
2594
2595    fn msvc_macro_assembler(&self) -> Result<Command, Error> {
2596        let target = self.get_target()?;
2597        let tool = if target.arch == "x86_64" {
2598            "ml64.exe"
2599        } else if target.arch == "arm" {
2600            "armasm.exe"
2601        } else if target.arch == "aarch64" {
2602            "armasm64.exe"
2603        } else {
2604            "ml.exe"
2605        };
2606        let mut cmd = self
2607            .windows_registry_find(&target, tool)
2608            .unwrap_or_else(|| self.cmd(tool));
2609        cmd.arg("-nologo"); // undocumented, yet working with armasm[64]
2610        for directory in self.include_directories.iter() {
2611            cmd.arg("-I").arg(&**directory);
2612        }
2613        if target.arch == "aarch64" || target.arch == "arm" {
2614            if self.get_debug() {
2615                cmd.arg("-g");
2616            }
2617
2618            for (key, value) in self.definitions.iter() {
2619                cmd.arg("-PreDefine");
2620                if let Some(ref value) = *value {
2621                    if let Ok(i) = value.parse::<i32>() {
2622                        cmd.arg(format!("{key} SETA {i}"));
2623                    } else if value.starts_with('"') && value.ends_with('"') {
2624                        cmd.arg(format!("{key} SETS {value}"));
2625                    } else {
2626                        cmd.arg(format!("{key} SETS \"{value}\""));
2627                    }
2628                } else {
2629                    cmd.arg(format!("{} SETL {}", key, "{TRUE}"));
2630                }
2631            }
2632        } else {
2633            if self.get_debug() {
2634                cmd.arg("-Zi");
2635            }
2636
2637            for (key, value) in self.definitions.iter() {
2638                if let Some(ref value) = *value {
2639                    cmd.arg(format!("-D{key}={value}"));
2640                } else {
2641                    cmd.arg(format!("-D{key}"));
2642                }
2643            }
2644        }
2645
2646        if target.arch == "x86" {
2647            cmd.arg("-safeseh");
2648        }
2649
2650        Ok(cmd)
2651    }
2652
2653    fn assemble(&self, lib_name: &str, dst: &Path, objs: &[Object]) -> Result<(), Error> {
2654        // Delete the destination if it exists as we want to
2655        // create on the first iteration instead of appending.
2656        let _ = fs::remove_file(dst);
2657
2658        // Add objects to the archive in limited-length batches. This helps keep
2659        // the length of the command line within a reasonable length to avoid
2660        // blowing system limits on limiting platforms like Windows.
2661        let objs: Vec<_> = objs
2662            .iter()
2663            .map(|o| o.dst.as_path())
2664            .chain(self.objects.iter().map(std::ops::Deref::deref))
2665            .collect();
2666        for chunk in objs.chunks(100) {
2667            self.assemble_progressive(dst, chunk)?;
2668        }
2669
2670        if self.cuda && self.cuda_file_count() > 0 {
2671            // Link the device-side code and add it to the target library,
2672            // so that non-CUDA linker can link the final binary.
2673
2674            let out_dir = self.get_out_dir()?;
2675            let dlink = out_dir.join(lib_name.to_owned() + "_dlink.o");
2676            let mut nvcc = self.get_compiler().to_command();
2677            nvcc.arg("--device-link").arg("-o").arg(&dlink).arg(dst);
2678            run(&mut nvcc, &self.cargo_output)?;
2679            self.assemble_progressive(dst, &[dlink.as_path()])?;
2680        }
2681
2682        let target = self.get_target()?;
2683        if target.env == "msvc" {
2684            // The Rust compiler will look for libfoo.a and foo.lib, but the
2685            // MSVC linker will also be passed foo.lib, so be sure that both
2686            // exist for now.
2687
2688            let lib_dst = dst.with_file_name(format!("{lib_name}.lib"));
2689            let _ = fs::remove_file(&lib_dst);
2690            match fs::hard_link(dst, &lib_dst).or_else(|_| {
2691                // if hard-link fails, just copy (ignoring the number of bytes written)
2692                fs::copy(dst, &lib_dst).map(|_| ())
2693            }) {
2694                Ok(_) => (),
2695                Err(_) => {
2696                    return Err(Error::new(
2697                        ErrorKind::IOError,
2698                        "Could not copy or create a hard-link to the generated lib file.",
2699                    ));
2700                }
2701            };
2702        } else {
2703            // Non-msvc targets (those using `ar`) need a separate step to add
2704            // the symbol table to archives since our construction command of
2705            // `cq` doesn't add it for us.
2706            let mut ar = self.try_get_archiver()?;
2707
2708            // NOTE: We add `s` even if flags were passed using $ARFLAGS/ar_flag, because `s`
2709            // here represents a _mode_, not an arbitrary flag. Further discussion of this choice
2710            // can be seen in https://github.com/rust-lang/cc-rs/pull/763.
2711            run(ar.arg("s").arg(dst), &self.cargo_output)?;
2712        }
2713
2714        Ok(())
2715    }
2716
2717    fn assemble_progressive(&self, dst: &Path, objs: &[&Path]) -> Result<(), Error> {
2718        let target = self.get_target()?;
2719
2720        let (mut cmd, program, any_flags) = self.try_get_archiver_and_flags()?;
2721        if target.env == "msvc" && !program.to_string_lossy().contains("llvm-ar") {
2722            // NOTE: -out: here is an I/O flag, and so must be included even if $ARFLAGS/ar_flag is
2723            // in use. -nologo on the other hand is just a regular flag, and one that we'll skip if
2724            // the caller has explicitly dictated the flags they want. See
2725            // https://github.com/rust-lang/cc-rs/pull/763 for further discussion.
2726            let mut out = OsString::from("-out:");
2727            out.push(dst);
2728            cmd.arg(out);
2729            if !any_flags {
2730                cmd.arg("-nologo");
2731            }
2732            // If the library file already exists, add the library name
2733            // as an argument to let lib.exe know we are appending the objs.
2734            if dst.exists() {
2735                cmd.arg(dst);
2736            }
2737            cmd.args(objs);
2738            run(&mut cmd, &self.cargo_output)?;
2739        } else {
2740            // Set an environment variable to tell the OSX archiver to ensure
2741            // that all dates listed in the archive are zero, improving
2742            // determinism of builds. AFAIK there's not really official
2743            // documentation of this but there's a lot of references to it if
2744            // you search google.
2745            //
2746            // You can reproduce this locally on a mac with:
2747            //
2748            //      $ touch foo.c
2749            //      $ cc -c foo.c -o foo.o
2750            //
2751            //      # Notice that these two checksums are different
2752            //      $ ar crus libfoo1.a foo.o && sleep 2 && ar crus libfoo2.a foo.o
2753            //      $ md5sum libfoo*.a
2754            //
2755            //      # Notice that these two checksums are the same
2756            //      $ export ZERO_AR_DATE=1
2757            //      $ ar crus libfoo1.a foo.o && sleep 2 && touch foo.o && ar crus libfoo2.a foo.o
2758            //      $ md5sum libfoo*.a
2759            //
2760            // In any case if this doesn't end up getting read, it shouldn't
2761            // cause that many issues!
2762            cmd.env("ZERO_AR_DATE", "1");
2763
2764            // NOTE: We add cq here regardless of whether $ARFLAGS/ar_flag have been used because
2765            // it dictates the _mode_ ar runs in, which the setter of $ARFLAGS/ar_flag can't
2766            // dictate. See https://github.com/rust-lang/cc-rs/pull/763 for further discussion.
2767            run(cmd.arg("cq").arg(dst).args(objs), &self.cargo_output)?;
2768        }
2769
2770        Ok(())
2771    }
2772
2773    fn apple_flags(&self, cmd: &mut Tool) -> Result<(), Error> {
2774        let target = self.get_target()?;
2775
2776        // This is a Darwin/Apple-specific flag that works both on GCC and Clang, but it is only
2777        // necessary on GCC since we specify `-target` on Clang.
2778        // https://gcc.gnu.org/onlinedocs/gcc/Darwin-Options.html#:~:text=arch
2779        // https://clang.llvm.org/docs/CommandGuide/clang.html#cmdoption-arch
2780        if cmd.is_like_gnu() {
2781            let arch = map_darwin_target_from_rust_to_compiler_architecture(&target);
2782            cmd.args.push("-arch".into());
2783            cmd.args.push(arch.into());
2784        }
2785
2786        // Pass the deployment target via `-mmacosx-version-min=`, `-miphoneos-version-min=` and
2787        // similar. Also necessary on GCC, as it forces a compilation error if the compiler is not
2788        // configured for Darwin: https://gcc.gnu.org/onlinedocs/gcc/Darwin-Options.html
2789        //
2790        // On visionOS and Mac Catalyst, there is no -m*-version-min= flag:
2791        // https://github.com/llvm/llvm-project/issues/88271
2792        // And the workaround to use `-mtargetos=` cannot be used with the `--target` flag that we
2793        // otherwise specify. So we avoid emitting that, and put the version in `--target` instead.
2794        if cmd.is_like_gnu() || !(target.os == "visionos" || target.abi == "macabi") {
2795            let min_version = self.apple_deployment_target(&target);
2796            cmd.args
2797                .push(target.apple_version_flag(&min_version).into());
2798        }
2799
2800        // AppleClang sometimes requires sysroot even on macOS
2801        if cmd.is_xctoolchain_clang() || target.os != "macos" {
2802            self.cargo_output.print_metadata(&format_args!(
2803                "Detecting {:?} SDK path for {}",
2804                target.os,
2805                target.apple_sdk_name(),
2806            ));
2807            let sdk_path = self.apple_sdk_root(&target)?;
2808
2809            cmd.args.push("-isysroot".into());
2810            cmd.args.push(OsStr::new(&sdk_path).to_owned());
2811            cmd.env
2812                .push(("SDKROOT".into(), OsStr::new(&sdk_path).to_owned()));
2813
2814            if target.abi == "macabi" {
2815                // Mac Catalyst uses the macOS SDK, but to compile against and
2816                // link to iOS-specific frameworks, we should have the support
2817                // library stubs in the include and library search path.
2818                let ios_support = Path::new(&sdk_path).join("System/iOSSupport");
2819
2820                cmd.args.extend([
2821                    // Header search path
2822                    OsString::from("-isystem"),
2823                    ios_support.join("usr/include").into(),
2824                    // Framework header search path
2825                    OsString::from("-iframework"),
2826                    ios_support.join("System/Library/Frameworks").into(),
2827                    // Library search path
2828                    {
2829                        let mut s = OsString::from("-L");
2830                        s.push(ios_support.join("usr/lib"));
2831                        s
2832                    },
2833                    // Framework linker search path
2834                    {
2835                        // Technically, we _could_ avoid emitting `-F`, as
2836                        // `-iframework` implies it, but let's keep it in for
2837                        // clarity.
2838                        let mut s = OsString::from("-F");
2839                        s.push(ios_support.join("System/Library/Frameworks"));
2840                        s
2841                    },
2842                ]);
2843            }
2844        }
2845
2846        Ok(())
2847    }
2848
2849    fn cmd<P: AsRef<OsStr>>(&self, prog: P) -> Command {
2850        let mut cmd = Command::new(prog);
2851        for (a, b) in self.env.iter() {
2852            cmd.env(a, b);
2853        }
2854        cmd
2855    }
2856
2857    fn get_base_compiler(&self) -> Result<Tool, Error> {
2858        let out_dir = self.get_out_dir().ok();
2859        let out_dir = out_dir.as_deref();
2860
2861        if let Some(c) = &self.compiler {
2862            return Ok(Tool::new(
2863                (**c).to_owned(),
2864                &self.build_cache.cached_compiler_family,
2865                &self.cargo_output,
2866                out_dir,
2867            ));
2868        }
2869        let target = self.get_target()?;
2870        let raw_target = self.get_raw_target()?;
2871        let (env, msvc, gnu, traditional, clang) = if self.cpp {
2872            ("CXX", "cl.exe", "g++", "c++", "clang++")
2873        } else {
2874            ("CC", "cl.exe", "gcc", "cc", "clang")
2875        };
2876
2877        // On historical Solaris systems, "cc" may have been Sun Studio, which
2878        // is not flag-compatible with "gcc".  This history casts a long shadow,
2879        // and many modern illumos distributions today ship GCC as "gcc" without
2880        // also making it available as "cc".
2881        let default = if cfg!(target_os = "solaris") || cfg!(target_os = "illumos") {
2882            gnu
2883        } else {
2884            traditional
2885        };
2886
2887        let cl_exe = self.windows_registry_find_tool(&target, "cl.exe");
2888
2889        let tool_opt: Option<Tool> = self
2890            .env_tool(env)
2891            .map(|(tool, wrapper, args)| {
2892                // Chop off leading/trailing whitespace to work around
2893                // semi-buggy build scripts which are shared in
2894                // makefiles/configure scripts (where spaces are far more
2895                // lenient)
2896                let mut t = Tool::with_args(
2897                    tool,
2898                    args.clone(),
2899                    &self.build_cache.cached_compiler_family,
2900                    &self.cargo_output,
2901                    out_dir,
2902                );
2903                if let Some(cc_wrapper) = wrapper {
2904                    t.cc_wrapper_path = Some(Path::new(&cc_wrapper).to_owned());
2905                }
2906                for arg in args {
2907                    t.cc_wrapper_args.push(arg.into());
2908                }
2909                t
2910            })
2911            .or_else(|| {
2912                if target.os == "emscripten" {
2913                    let tool = if self.cpp { "em++" } else { "emcc" };
2914                    // Windows uses bat file so we have to be a bit more specific
2915                    if cfg!(windows) {
2916                        let mut t = Tool::with_family(
2917                            PathBuf::from("cmd"),
2918                            ToolFamily::Clang { zig_cc: false },
2919                        );
2920                        t.args.push("/c".into());
2921                        t.args.push(format!("{tool}.bat").into());
2922                        Some(t)
2923                    } else {
2924                        Some(Tool::new(
2925                            PathBuf::from(tool),
2926                            &self.build_cache.cached_compiler_family,
2927                            &self.cargo_output,
2928                            out_dir,
2929                        ))
2930                    }
2931                } else {
2932                    None
2933                }
2934            })
2935            .or_else(|| cl_exe.clone());
2936
2937        let tool = match tool_opt {
2938            Some(t) => t,
2939            None => {
2940                let compiler = if cfg!(windows) && target.os == "windows" {
2941                    if target.env == "msvc" {
2942                        msvc.to_string()
2943                    } else {
2944                        let cc = if target.abi == "llvm" { clang } else { gnu };
2945                        format!("{cc}.exe")
2946                    }
2947                } else if target.os == "ios"
2948                    || target.os == "watchos"
2949                    || target.os == "tvos"
2950                    || target.os == "visionos"
2951                {
2952                    clang.to_string()
2953                } else if target.os == "android" {
2954                    autodetect_android_compiler(&raw_target, gnu, clang)
2955                } else if target.os == "cloudabi" {
2956                    format!(
2957                        "{}-{}-{}-{}",
2958                        target.full_arch, target.vendor, target.os, traditional
2959                    )
2960                } else if target.arch == "wasm32" || target.arch == "wasm64" {
2961                    // Compiling WASM is not currently supported by GCC, so
2962                    // let's default to Clang.
2963                    clang.to_string()
2964                } else if target.os == "vxworks" {
2965                    if self.cpp {
2966                        "wr-c++".to_string()
2967                    } else {
2968                        "wr-cc".to_string()
2969                    }
2970                } else if target.arch == "arm" && target.vendor == "kmc" {
2971                    format!("arm-kmc-eabi-{gnu}")
2972                } else if target.arch == "aarch64" && target.vendor == "kmc" {
2973                    format!("aarch64-kmc-elf-{gnu}")
2974                } else if target.os == "nto" {
2975                    // See for details: https://github.com/rust-lang/cc-rs/pull/1319
2976                    if self.cpp {
2977                        "q++".to_string()
2978                    } else {
2979                        "qcc".to_string()
2980                    }
2981                } else if self.get_is_cross_compile()? {
2982                    let prefix = self.prefix_for_target(&raw_target);
2983                    match prefix {
2984                        Some(prefix) => {
2985                            let cc = if target.abi == "llvm" { clang } else { gnu };
2986                            format!("{prefix}-{cc}")
2987                        }
2988                        None => default.to_string(),
2989                    }
2990                } else {
2991                    default.to_string()
2992                };
2993
2994                let mut t = Tool::new(
2995                    PathBuf::from(compiler),
2996                    &self.build_cache.cached_compiler_family,
2997                    &self.cargo_output,
2998                    out_dir,
2999                );
3000                if let Some(cc_wrapper) = self.rustc_wrapper_fallback() {
3001                    t.cc_wrapper_path = Some(Path::new(&cc_wrapper).to_owned());
3002                }
3003                t
3004            }
3005        };
3006
3007        let mut tool = if self.cuda {
3008            assert!(
3009                tool.args.is_empty(),
3010                "CUDA compilation currently assumes empty pre-existing args"
3011            );
3012            let nvcc = match self.getenv_with_target_prefixes("NVCC") {
3013                Err(_) => PathBuf::from("nvcc"),
3014                Ok(nvcc) => PathBuf::from(&*nvcc),
3015            };
3016            let mut nvcc_tool = Tool::with_features(
3017                nvcc,
3018                vec![],
3019                self.cuda,
3020                &self.build_cache.cached_compiler_family,
3021                &self.cargo_output,
3022                out_dir,
3023            );
3024            if self.ccbin {
3025                nvcc_tool
3026                    .args
3027                    .push(format!("-ccbin={}", tool.path.display()).into());
3028            }
3029            if let Some(cc_wrapper) = self.rustc_wrapper_fallback() {
3030                nvcc_tool.cc_wrapper_path = Some(Path::new(&cc_wrapper).to_owned());
3031            }
3032            nvcc_tool.family = tool.family;
3033            nvcc_tool
3034        } else {
3035            tool
3036        };
3037
3038        // New "standalone" C/C++ cross-compiler executables from recent Android NDK
3039        // are just shell scripts that call main clang binary (from Android NDK) with
3040        // proper `--target` argument.
3041        //
3042        // For example, armv7a-linux-androideabi16-clang passes
3043        // `--target=armv7a-linux-androideabi16` to clang.
3044        //
3045        // As the shell script calls the main clang binary, the command line limit length
3046        // on Windows is restricted to around 8k characters instead of around 32k characters.
3047        // To remove this limit, we call the main clang binary directly and construct the
3048        // `--target=` ourselves.
3049        if cfg!(windows) && android_clang_compiler_uses_target_arg_internally(&tool.path) {
3050            if let Some(path) = tool.path.file_name() {
3051                let file_name = path.to_str().unwrap().to_owned();
3052                let (target, clang) = file_name.split_at(file_name.rfind('-').unwrap());
3053
3054                tool.has_internal_target_arg = true;
3055                tool.path.set_file_name(clang.trim_start_matches('-'));
3056                tool.path.set_extension("exe");
3057                tool.args.push(format!("--target={target}").into());
3058
3059                // Additionally, shell scripts for target i686-linux-android versions 16 to 24
3060                // pass the `mstackrealign` option so we do that here as well.
3061                if target.contains("i686-linux-android") {
3062                    let (_, version) = target.split_at(target.rfind('d').unwrap() + 1);
3063                    if let Ok(version) = version.parse::<u32>() {
3064                        if version > 15 && version < 25 {
3065                            tool.args.push("-mstackrealign".into());
3066                        }
3067                    }
3068                }
3069            };
3070        }
3071
3072        // If we found `cl.exe` in our environment, the tool we're returning is
3073        // an MSVC-like tool, *and* no env vars were set then set env vars for
3074        // the tool that we're returning.
3075        //
3076        // Env vars are needed for things like `link.exe` being put into PATH as
3077        // well as header include paths sometimes. These paths are automatically
3078        // included by default but if the `CC` or `CXX` env vars are set these
3079        // won't be used. This'll ensure that when the env vars are used to
3080        // configure for invocations like `clang-cl` we still get a "works out
3081        // of the box" experience.
3082        if let Some(cl_exe) = cl_exe {
3083            if tool.family == (ToolFamily::Msvc { clang_cl: true })
3084                && tool.env.is_empty()
3085                && target.env == "msvc"
3086            {
3087                for (k, v) in cl_exe.env.iter() {
3088                    tool.env.push((k.to_owned(), v.to_owned()));
3089                }
3090            }
3091        }
3092
3093        if target.env == "msvc" && tool.family == ToolFamily::Gnu {
3094            self.cargo_output
3095                .print_warning(&"GNU compiler is not supported for this target");
3096        }
3097
3098        Ok(tool)
3099    }
3100
3101    /// Returns a fallback `cc_compiler_wrapper` by introspecting `RUSTC_WRAPPER`
3102    fn rustc_wrapper_fallback(&self) -> Option<Arc<OsStr>> {
3103        // No explicit CC wrapper was detected, but check if RUSTC_WRAPPER
3104        // is defined and is a build accelerator that is compatible with
3105        // C/C++ compilers (e.g. sccache)
3106        const VALID_WRAPPERS: &[&str] = &["sccache", "cachepot", "buildcache"];
3107
3108        let rustc_wrapper = self.getenv("RUSTC_WRAPPER")?;
3109        let wrapper_path = Path::new(&rustc_wrapper);
3110        let wrapper_stem = wrapper_path.file_stem()?;
3111
3112        if VALID_WRAPPERS.contains(&wrapper_stem.to_str()?) {
3113            Some(rustc_wrapper)
3114        } else {
3115            None
3116        }
3117    }
3118
3119    /// Returns compiler path, optional modifier name from whitelist, and arguments vec
3120    fn env_tool(&self, name: &str) -> Option<(PathBuf, Option<Arc<OsStr>>, Vec<String>)> {
3121        let tool = self.getenv_with_target_prefixes(name).ok()?;
3122        let tool = tool.to_string_lossy();
3123        let tool = tool.trim();
3124
3125        if tool.is_empty() {
3126            return None;
3127        }
3128
3129        // If this is an exact path on the filesystem we don't want to do any
3130        // interpretation at all, just pass it on through. This'll hopefully get
3131        // us to support spaces-in-paths.
3132        if Path::new(tool).exists() {
3133            return Some((
3134                PathBuf::from(tool),
3135                self.rustc_wrapper_fallback(),
3136                Vec::new(),
3137            ));
3138        }
3139
3140        // Ok now we want to handle a couple of scenarios. We'll assume from
3141        // here on out that spaces are splitting separate arguments. Two major
3142        // features we want to support are:
3143        //
3144        //      CC='sccache cc'
3145        //
3146        // aka using `sccache` or any other wrapper/caching-like-thing for
3147        // compilations. We want to know what the actual compiler is still,
3148        // though, because our `Tool` API support introspection of it to see
3149        // what compiler is in use.
3150        //
3151        // additionally we want to support
3152        //
3153        //      CC='cc -flag'
3154        //
3155        // where the CC env var is used to also pass default flags to the C
3156        // compiler.
3157        //
3158        // It's true that everything here is a bit of a pain, but apparently if
3159        // you're not literally make or bash then you get a lot of bug reports.
3160        let mut known_wrappers = vec![
3161            "ccache",
3162            "distcc",
3163            "sccache",
3164            "icecc",
3165            "cachepot",
3166            "buildcache",
3167        ];
3168        let custom_wrapper = self.getenv("CC_KNOWN_WRAPPER_CUSTOM");
3169        if custom_wrapper.is_some() {
3170            known_wrappers.push(custom_wrapper.as_deref().unwrap().to_str().unwrap());
3171        }
3172
3173        let mut parts = tool.split_whitespace();
3174        let maybe_wrapper = parts.next()?;
3175
3176        let file_stem = Path::new(maybe_wrapper).file_stem()?.to_str()?;
3177        if known_wrappers.contains(&file_stem) {
3178            if let Some(compiler) = parts.next() {
3179                return Some((
3180                    compiler.into(),
3181                    Some(Arc::<OsStr>::from(OsStr::new(&maybe_wrapper))),
3182                    parts.map(|s| s.to_string()).collect(),
3183                ));
3184            }
3185        }
3186
3187        Some((
3188            maybe_wrapper.into(),
3189            self.rustc_wrapper_fallback(),
3190            parts.map(|s| s.to_string()).collect(),
3191        ))
3192    }
3193
3194    /// Returns the C++ standard library:
3195    /// 1. If [`cpp_link_stdlib`](cc::Build::cpp_link_stdlib) is set, uses its value.
3196    /// 2. Else if the `CXXSTDLIB` environment variable is set, uses its value.
3197    /// 3. Else the default is `c++` for OS X and BSDs, `c++_shared` for Android,
3198    ///    `None` for MSVC and `stdc++` for anything else.
3199    fn get_cpp_link_stdlib(&self) -> Result<Option<Cow<'_, Path>>, Error> {
3200        match &self.cpp_link_stdlib {
3201            Some(s) => Ok(s.as_deref().map(Path::new).map(Cow::Borrowed)),
3202            None => {
3203                if let Ok(stdlib) = self.getenv_with_target_prefixes("CXXSTDLIB") {
3204                    if stdlib.is_empty() {
3205                        Ok(None)
3206                    } else {
3207                        Ok(Some(Cow::Owned(Path::new(&stdlib).to_owned())))
3208                    }
3209                } else {
3210                    let target = self.get_target()?;
3211                    if target.env == "msvc" {
3212                        Ok(None)
3213                    } else if target.vendor == "apple"
3214                        || target.os == "freebsd"
3215                        || target.os == "openbsd"
3216                        || target.os == "aix"
3217                        || (target.os == "linux" && target.env == "ohos")
3218                        || target.os == "wasi"
3219                    {
3220                        Ok(Some(Cow::Borrowed(Path::new("c++"))))
3221                    } else if target.os == "android" {
3222                        Ok(Some(Cow::Borrowed(Path::new("c++_shared"))))
3223                    } else {
3224                        Ok(Some(Cow::Borrowed(Path::new("stdc++"))))
3225                    }
3226                }
3227            }
3228        }
3229    }
3230
3231    /// Get the archiver (ar) that's in use for this configuration.
3232    ///
3233    /// You can use [`Command::get_program`] to get just the path to the command.
3234    ///
3235    /// This method will take into account all configuration such as debug
3236    /// information, optimization level, include directories, defines, etc.
3237    /// Additionally, the compiler binary in use follows the standard
3238    /// conventions for this path, e.g. looking at the explicitly set compiler,
3239    /// environment variables (a number of which are inspected here), and then
3240    /// falling back to the default configuration.
3241    ///
3242    /// # Panics
3243    ///
3244    /// Panics if an error occurred while determining the architecture.
3245    pub fn get_archiver(&self) -> Command {
3246        match self.try_get_archiver() {
3247            Ok(tool) => tool,
3248            Err(e) => fail(&e.message),
3249        }
3250    }
3251
3252    /// Get the archiver that's in use for this configuration.
3253    ///
3254    /// This will return a result instead of panicking;
3255    /// see [`Self::get_archiver`] for the complete description.
3256    pub fn try_get_archiver(&self) -> Result<Command, Error> {
3257        Ok(self.try_get_archiver_and_flags()?.0)
3258    }
3259
3260    fn try_get_archiver_and_flags(&self) -> Result<(Command, PathBuf, bool), Error> {
3261        let (mut cmd, name) = self.get_base_archiver()?;
3262        let mut any_flags = false;
3263        if let Some(flags) = self.envflags("ARFLAGS")? {
3264            any_flags = true;
3265            cmd.args(flags);
3266        }
3267        for flag in &self.ar_flags {
3268            any_flags = true;
3269            cmd.arg(&**flag);
3270        }
3271        Ok((cmd, name, any_flags))
3272    }
3273
3274    fn get_base_archiver(&self) -> Result<(Command, PathBuf), Error> {
3275        if let Some(ref a) = self.archiver {
3276            let archiver = &**a;
3277            return Ok((self.cmd(archiver), archiver.into()));
3278        }
3279
3280        self.get_base_archiver_variant("AR", "ar")
3281    }
3282
3283    /// Get the ranlib that's in use for this configuration.
3284    ///
3285    /// You can use [`Command::get_program`] to get just the path to the command.
3286    ///
3287    /// This method will take into account all configuration such as debug
3288    /// information, optimization level, include directories, defines, etc.
3289    /// Additionally, the compiler binary in use follows the standard
3290    /// conventions for this path, e.g. looking at the explicitly set compiler,
3291    /// environment variables (a number of which are inspected here), and then
3292    /// falling back to the default configuration.
3293    ///
3294    /// # Panics
3295    ///
3296    /// Panics if an error occurred while determining the architecture.
3297    pub fn get_ranlib(&self) -> Command {
3298        match self.try_get_ranlib() {
3299            Ok(tool) => tool,
3300            Err(e) => fail(&e.message),
3301        }
3302    }
3303
3304    /// Get the ranlib that's in use for this configuration.
3305    ///
3306    /// This will return a result instead of panicking;
3307    /// see [`Self::get_ranlib`] for the complete description.
3308    pub fn try_get_ranlib(&self) -> Result<Command, Error> {
3309        let mut cmd = self.get_base_ranlib()?;
3310        if let Some(flags) = self.envflags("RANLIBFLAGS")? {
3311            cmd.args(flags);
3312        }
3313        Ok(cmd)
3314    }
3315
3316    fn get_base_ranlib(&self) -> Result<Command, Error> {
3317        if let Some(ref r) = self.ranlib {
3318            return Ok(self.cmd(&**r));
3319        }
3320
3321        Ok(self.get_base_archiver_variant("RANLIB", "ranlib")?.0)
3322    }
3323
3324    fn get_base_archiver_variant(
3325        &self,
3326        env: &str,
3327        tool: &str,
3328    ) -> Result<(Command, PathBuf), Error> {
3329        let target = self.get_target()?;
3330        let mut name = PathBuf::new();
3331        let tool_opt: Option<Command> = self
3332            .env_tool(env)
3333            .map(|(tool, _wrapper, args)| {
3334                name.clone_from(&tool);
3335                let mut cmd = self.cmd(tool);
3336                cmd.args(args);
3337                cmd
3338            })
3339            .or_else(|| {
3340                if target.os == "emscripten" {
3341                    // Windows use bat files so we have to be a bit more specific
3342                    if cfg!(windows) {
3343                        let mut cmd = self.cmd("cmd");
3344                        name = format!("em{tool}.bat").into();
3345                        cmd.arg("/c").arg(&name);
3346                        Some(cmd)
3347                    } else {
3348                        name = format!("em{tool}").into();
3349                        Some(self.cmd(&name))
3350                    }
3351                } else if target.arch == "wasm32" || target.arch == "wasm64" {
3352                    // Formally speaking one should be able to use this approach,
3353                    // parsing -print-search-dirs output, to cover all clang targets,
3354                    // including Android SDKs and other cross-compilation scenarios...
3355                    // And even extend it to gcc targets by searching for "ar" instead
3356                    // of "llvm-ar"...
3357                    let compiler = self.get_base_compiler().ok()?;
3358                    if compiler.is_like_clang() {
3359                        name = format!("llvm-{tool}").into();
3360                        self.search_programs(
3361                            &mut self.cmd(&compiler.path),
3362                            &name,
3363                            &self.cargo_output,
3364                        )
3365                        .map(|name| self.cmd(name))
3366                    } else {
3367                        None
3368                    }
3369                } else {
3370                    None
3371                }
3372            });
3373
3374        let tool = match tool_opt {
3375            Some(t) => t,
3376            None => {
3377                if target.os == "android" {
3378                    name = format!("llvm-{tool}").into();
3379                    match Command::new(&name).arg("--version").status() {
3380                        Ok(status) if status.success() => (),
3381                        _ => {
3382                            // FIXME: Use parsed target.
3383                            let raw_target = self.get_raw_target()?;
3384                            name = format!("{}-{}", raw_target.replace("armv7", "arm"), tool).into()
3385                        }
3386                    }
3387                    self.cmd(&name)
3388                } else if target.env == "msvc" {
3389                    // NOTE: There isn't really a ranlib on msvc, so arguably we should return
3390                    // `None` somehow here. But in general, callers will already have to be aware
3391                    // of not running ranlib on Windows anyway, so it feels okay to return lib.exe
3392                    // here.
3393
3394                    let compiler = self.get_base_compiler()?;
3395                    let mut lib = String::new();
3396                    if compiler.family == (ToolFamily::Msvc { clang_cl: true }) {
3397                        // See if there is 'llvm-lib' next to 'clang-cl'
3398                        // Another possibility could be to see if there is 'clang'
3399                        // next to 'clang-cl' and use 'search_programs()' to locate
3400                        // 'llvm-lib'. This is because 'clang-cl' doesn't support
3401                        // the -print-search-dirs option.
3402                        if let Some(mut cmd) = self.which(&compiler.path, None) {
3403                            cmd.pop();
3404                            cmd.push("llvm-lib.exe");
3405                            if let Some(llvm_lib) = self.which(&cmd, None) {
3406                                llvm_lib.to_str().unwrap().clone_into(&mut lib);
3407                            }
3408                        }
3409                    }
3410
3411                    if lib.is_empty() {
3412                        name = PathBuf::from("lib.exe");
3413                        let mut cmd = match self.windows_registry_find(&target, "lib.exe") {
3414                            Some(t) => t,
3415                            None => self.cmd("lib.exe"),
3416                        };
3417                        if target.full_arch == "arm64ec" {
3418                            cmd.arg("/machine:arm64ec");
3419                        }
3420                        cmd
3421                    } else {
3422                        name = lib.into();
3423                        self.cmd(&name)
3424                    }
3425                } else if target.os == "illumos" {
3426                    // The default 'ar' on illumos uses a non-standard flags,
3427                    // but the OS comes bundled with a GNU-compatible variant.
3428                    //
3429                    // Use the GNU-variant to match other Unix systems.
3430                    name = format!("g{tool}").into();
3431                    self.cmd(&name)
3432                } else if target.os == "vxworks" {
3433                    name = format!("wr-{tool}").into();
3434                    self.cmd(&name)
3435                } else if target.os == "nto" {
3436                    // Ref: https://www.qnx.com/developers/docs/8.0/com.qnx.doc.neutrino.utilities/topic/a/ar.html
3437                    name = match target.full_arch {
3438                        "i586" => format!("ntox86-{tool}").into(),
3439                        "x86" | "aarch64" | "x86_64" => {
3440                            format!("nto{}-{}", target.arch, tool).into()
3441                        }
3442                        _ => {
3443                            return Err(Error::new(
3444                                ErrorKind::InvalidTarget,
3445                                format!("Unknown architecture for Neutrino QNX: {}", target.arch),
3446                            ))
3447                        }
3448                    };
3449                    self.cmd(&name)
3450                } else if self.get_is_cross_compile()? {
3451                    match self.prefix_for_target(&self.get_raw_target()?) {
3452                        Some(prefix) => {
3453                            // GCC uses $target-gcc-ar, whereas binutils uses $target-ar -- try both.
3454                            // Prefer -ar if it exists, as builds of `-gcc-ar` have been observed to be
3455                            // outright broken (such as when targeting freebsd with `--disable-lto`
3456                            // toolchain where the archiver attempts to load the LTO plugin anyway but
3457                            // fails to find one).
3458                            //
3459                            // The same applies to ranlib.
3460                            let chosen = ["", "-gcc"]
3461                                .iter()
3462                                .filter_map(|infix| {
3463                                    let target_p = format!("{prefix}{infix}-{tool}");
3464                                    let status = Command::new(&target_p)
3465                                        .arg("--version")
3466                                        .stdin(Stdio::null())
3467                                        .stdout(Stdio::null())
3468                                        .stderr(Stdio::null())
3469                                        .status()
3470                                        .ok()?;
3471                                    status.success().then_some(target_p)
3472                                })
3473                                .next()
3474                                .unwrap_or_else(|| tool.to_string());
3475                            name = chosen.into();
3476                            self.cmd(&name)
3477                        }
3478                        None => {
3479                            name = tool.into();
3480                            self.cmd(&name)
3481                        }
3482                    }
3483                } else {
3484                    name = tool.into();
3485                    self.cmd(&name)
3486                }
3487            }
3488        };
3489
3490        Ok((tool, name))
3491    }
3492
3493    // FIXME: Use parsed target instead of raw target.
3494    fn prefix_for_target(&self, target: &str) -> Option<Cow<'static, str>> {
3495        // CROSS_COMPILE is of the form: "arm-linux-gnueabi-"
3496        self.getenv("CROSS_COMPILE")
3497            .as_deref()
3498            .map(|s| s.to_string_lossy().trim_end_matches('-').to_owned())
3499            .map(Cow::Owned)
3500            .or_else(|| {
3501                // Put aside RUSTC_LINKER's prefix to be used as second choice, after CROSS_COMPILE
3502                self.getenv("RUSTC_LINKER").and_then(|var| {
3503                    var.to_string_lossy()
3504                        .strip_suffix("-gcc")
3505                        .map(str::to_string)
3506                        .map(Cow::Owned)
3507                })
3508            })
3509            .or_else(|| {
3510                match target {
3511                    // Note: there is no `aarch64-pc-windows-gnu` target, only `-gnullvm`
3512                    "aarch64-pc-windows-gnullvm" => Some("aarch64-w64-mingw32"),
3513                    "aarch64-uwp-windows-gnu" => Some("aarch64-w64-mingw32"),
3514                    "aarch64-unknown-linux-gnu" => Some("aarch64-linux-gnu"),
3515                    "aarch64-unknown-linux-musl" => Some("aarch64-linux-musl"),
3516                    "aarch64-unknown-netbsd" => Some("aarch64--netbsd"),
3517                    "arm-unknown-linux-gnueabi" => Some("arm-linux-gnueabi"),
3518                    "armv4t-unknown-linux-gnueabi" => Some("arm-linux-gnueabi"),
3519                    "armv5te-unknown-linux-gnueabi" => Some("arm-linux-gnueabi"),
3520                    "armv5te-unknown-linux-musleabi" => Some("arm-linux-gnueabi"),
3521                    "arm-unknown-linux-gnueabihf" => Some("arm-linux-gnueabihf"),
3522                    "arm-unknown-linux-musleabi" => Some("arm-linux-musleabi"),
3523                    "arm-unknown-linux-musleabihf" => Some("arm-linux-musleabihf"),
3524                    "arm-unknown-netbsd-eabi" => Some("arm--netbsdelf-eabi"),
3525                    "armv6-unknown-netbsd-eabihf" => Some("armv6--netbsdelf-eabihf"),
3526                    "armv7-unknown-linux-gnueabi" => Some("arm-linux-gnueabi"),
3527                    "armv7-unknown-linux-gnueabihf" => Some("arm-linux-gnueabihf"),
3528                    "armv7-unknown-linux-musleabihf" => Some("arm-linux-musleabihf"),
3529                    "armv7neon-unknown-linux-gnueabihf" => Some("arm-linux-gnueabihf"),
3530                    "armv7neon-unknown-linux-musleabihf" => Some("arm-linux-musleabihf"),
3531                    "thumbv7-unknown-linux-gnueabihf" => Some("arm-linux-gnueabihf"),
3532                    "thumbv7-unknown-linux-musleabihf" => Some("arm-linux-musleabihf"),
3533                    "thumbv7neon-unknown-linux-gnueabihf" => Some("arm-linux-gnueabihf"),
3534                    "thumbv7neon-unknown-linux-musleabihf" => Some("arm-linux-musleabihf"),
3535                    "armv7-unknown-netbsd-eabihf" => Some("armv7--netbsdelf-eabihf"),
3536                    "hexagon-unknown-linux-musl" => Some("hexagon-linux-musl"),
3537                    "i586-unknown-linux-musl" => Some("musl"),
3538                    "i686-pc-windows-gnu" => Some("i686-w64-mingw32"),
3539                    "i686-pc-windows-gnullvm" => Some("i686-w64-mingw32"),
3540                    "i686-uwp-windows-gnu" => Some("i686-w64-mingw32"),
3541                    "i686-unknown-linux-gnu" => self.find_working_gnu_prefix(&[
3542                        "i686-linux-gnu",
3543                        "x86_64-linux-gnu", // transparently support gcc-multilib
3544                    ]), // explicit None if not found, so caller knows to fall back
3545                    "i686-unknown-linux-musl" => Some("musl"),
3546                    "i686-unknown-netbsd" => Some("i486--netbsdelf"),
3547                    "loongarch64-unknown-linux-gnu" => Some("loongarch64-linux-gnu"),
3548                    "mips-unknown-linux-gnu" => Some("mips-linux-gnu"),
3549                    "mips-unknown-linux-musl" => Some("mips-linux-musl"),
3550                    "mipsel-unknown-linux-gnu" => Some("mipsel-linux-gnu"),
3551                    "mipsel-unknown-linux-musl" => Some("mipsel-linux-musl"),
3552                    "mips64-unknown-linux-gnuabi64" => Some("mips64-linux-gnuabi64"),
3553                    "mips64el-unknown-linux-gnuabi64" => Some("mips64el-linux-gnuabi64"),
3554                    "mipsisa32r6-unknown-linux-gnu" => Some("mipsisa32r6-linux-gnu"),
3555                    "mipsisa32r6el-unknown-linux-gnu" => Some("mipsisa32r6el-linux-gnu"),
3556                    "mipsisa64r6-unknown-linux-gnuabi64" => Some("mipsisa64r6-linux-gnuabi64"),
3557                    "mipsisa64r6el-unknown-linux-gnuabi64" => Some("mipsisa64r6el-linux-gnuabi64"),
3558                    "powerpc-unknown-linux-gnu" => Some("powerpc-linux-gnu"),
3559                    "powerpc-unknown-linux-gnuspe" => Some("powerpc-linux-gnuspe"),
3560                    "powerpc-unknown-netbsd" => Some("powerpc--netbsd"),
3561                    "powerpc64-unknown-linux-gnu" => Some("powerpc64-linux-gnu"),
3562                    "powerpc64le-unknown-linux-gnu" => Some("powerpc64le-linux-gnu"),
3563                    "riscv32i-unknown-none-elf" => self.find_working_gnu_prefix(&[
3564                        "riscv32-unknown-elf",
3565                        "riscv64-unknown-elf",
3566                        "riscv-none-embed",
3567                    ]),
3568                    "riscv32imac-esp-espidf" => Some("riscv32-esp-elf"),
3569                    "riscv32imac-unknown-none-elf" => self.find_working_gnu_prefix(&[
3570                        "riscv32-unknown-elf",
3571                        "riscv64-unknown-elf",
3572                        "riscv-none-embed",
3573                    ]),
3574                    "riscv32imac-unknown-xous-elf" => self.find_working_gnu_prefix(&[
3575                        "riscv32-unknown-elf",
3576                        "riscv64-unknown-elf",
3577                        "riscv-none-embed",
3578                    ]),
3579                    "riscv32imc-esp-espidf" => Some("riscv32-esp-elf"),
3580                    "riscv32imc-unknown-none-elf" => self.find_working_gnu_prefix(&[
3581                        "riscv32-unknown-elf",
3582                        "riscv64-unknown-elf",
3583                        "riscv-none-embed",
3584                    ]),
3585                    "riscv64gc-unknown-none-elf" => self.find_working_gnu_prefix(&[
3586                        "riscv64-unknown-elf",
3587                        "riscv32-unknown-elf",
3588                        "riscv-none-embed",
3589                    ]),
3590                    "riscv64imac-unknown-none-elf" => self.find_working_gnu_prefix(&[
3591                        "riscv64-unknown-elf",
3592                        "riscv32-unknown-elf",
3593                        "riscv-none-embed",
3594                    ]),
3595                    "riscv64gc-unknown-linux-gnu" => Some("riscv64-linux-gnu"),
3596                    "riscv32gc-unknown-linux-gnu" => Some("riscv32-linux-gnu"),
3597                    "riscv64gc-unknown-linux-musl" => Some("riscv64-linux-musl"),
3598                    "riscv32gc-unknown-linux-musl" => Some("riscv32-linux-musl"),
3599                    "riscv64gc-unknown-netbsd" => Some("riscv64--netbsd"),
3600                    "s390x-unknown-linux-gnu" => Some("s390x-linux-gnu"),
3601                    "sparc-unknown-linux-gnu" => Some("sparc-linux-gnu"),
3602                    "sparc64-unknown-linux-gnu" => Some("sparc64-linux-gnu"),
3603                    "sparc64-unknown-netbsd" => Some("sparc64--netbsd"),
3604                    "sparcv9-sun-solaris" => Some("sparcv9-sun-solaris"),
3605                    "armv7a-none-eabi" => Some("arm-none-eabi"),
3606                    "armv7a-none-eabihf" => Some("arm-none-eabi"),
3607                    "armebv7r-none-eabi" => Some("arm-none-eabi"),
3608                    "armebv7r-none-eabihf" => Some("arm-none-eabi"),
3609                    "armv7r-none-eabi" => Some("arm-none-eabi"),
3610                    "armv7r-none-eabihf" => Some("arm-none-eabi"),
3611                    "armv8r-none-eabihf" => Some("arm-none-eabi"),
3612                    "thumbv6m-none-eabi" => Some("arm-none-eabi"),
3613                    "thumbv7em-none-eabi" => Some("arm-none-eabi"),
3614                    "thumbv7em-none-eabihf" => Some("arm-none-eabi"),
3615                    "thumbv7m-none-eabi" => Some("arm-none-eabi"),
3616                    "thumbv8m.base-none-eabi" => Some("arm-none-eabi"),
3617                    "thumbv8m.main-none-eabi" => Some("arm-none-eabi"),
3618                    "thumbv8m.main-none-eabihf" => Some("arm-none-eabi"),
3619                    "x86_64-pc-windows-gnu" => Some("x86_64-w64-mingw32"),
3620                    "x86_64-pc-windows-gnullvm" => Some("x86_64-w64-mingw32"),
3621                    "x86_64-uwp-windows-gnu" => Some("x86_64-w64-mingw32"),
3622                    "x86_64-rumprun-netbsd" => Some("x86_64-rumprun-netbsd"),
3623                    "x86_64-unknown-linux-gnu" => self.find_working_gnu_prefix(&[
3624                        "x86_64-linux-gnu", // rustfmt wrap
3625                    ]), // explicit None if not found, so caller knows to fall back
3626                    "x86_64-unknown-linux-musl" => {
3627                        self.find_working_gnu_prefix(&["x86_64-linux-musl", "musl"])
3628                    }
3629                    "x86_64-unknown-netbsd" => Some("x86_64--netbsd"),
3630                    _ => None,
3631                }
3632                .map(Cow::Borrowed)
3633            })
3634    }
3635
3636    /// Some platforms have multiple, compatible, canonical prefixes. Look through
3637    /// each possible prefix for a compiler that exists and return it. The prefixes
3638    /// should be ordered from most-likely to least-likely.
3639    fn find_working_gnu_prefix(&self, prefixes: &[&'static str]) -> Option<&'static str> {
3640        let suffix = if self.cpp { "-g++" } else { "-gcc" };
3641        let extension = std::env::consts::EXE_SUFFIX;
3642
3643        // Loop through PATH entries searching for each toolchain. This ensures that we
3644        // are more likely to discover the toolchain early on, because chances are good
3645        // that the desired toolchain is in one of the higher-priority paths.
3646        self.getenv("PATH")
3647            .as_ref()
3648            .and_then(|path_entries| {
3649                env::split_paths(path_entries).find_map(|path_entry| {
3650                    for prefix in prefixes {
3651                        let target_compiler = format!("{prefix}{suffix}{extension}");
3652                        if path_entry.join(&target_compiler).exists() {
3653                            return Some(prefix);
3654                        }
3655                    }
3656                    None
3657                })
3658            })
3659            .copied()
3660            // If no toolchain was found, provide the first toolchain that was passed in.
3661            // This toolchain has been shown not to exist, however it will appear in the
3662            // error that is shown to the user which should make it easier to search for
3663            // where it should be obtained.
3664            .or_else(|| prefixes.first().copied())
3665    }
3666
3667    fn get_target(&self) -> Result<TargetInfo<'_>, Error> {
3668        match &self.target {
3669            Some(t) if Some(&**t) != self.getenv_unwrap_str("TARGET").ok().as_deref() => {
3670                TargetInfo::from_rustc_target(t)
3671            }
3672            // Fetch target information from environment if not set, or if the
3673            // target was the same as the TARGET environment variable, in
3674            // case the user did `build.target(&env::var("TARGET").unwrap())`.
3675            _ => self
3676                .build_cache
3677                .target_info_parser
3678                .parse_from_cargo_environment_variables(),
3679        }
3680    }
3681
3682    fn get_raw_target(&self) -> Result<Cow<'_, str>, Error> {
3683        match &self.target {
3684            Some(t) => Ok(Cow::Borrowed(t)),
3685            None => self.getenv_unwrap_str("TARGET").map(Cow::Owned),
3686        }
3687    }
3688
3689    fn get_is_cross_compile(&self) -> Result<bool, Error> {
3690        let target = self.get_raw_target()?;
3691        let host: Cow<'_, str> = match &self.host {
3692            Some(h) => Cow::Borrowed(h),
3693            None => Cow::Owned(self.getenv_unwrap_str("HOST")?),
3694        };
3695        Ok(host != target)
3696    }
3697
3698    fn get_opt_level(&self) -> Result<Cow<'_, str>, Error> {
3699        match &self.opt_level {
3700            Some(ol) => Ok(Cow::Borrowed(ol)),
3701            None => self.getenv_unwrap_str("OPT_LEVEL").map(Cow::Owned),
3702        }
3703    }
3704
3705    fn get_debug(&self) -> bool {
3706        self.debug.unwrap_or_else(|| self.getenv_boolean("DEBUG"))
3707    }
3708
3709    fn get_shell_escaped_flags(&self) -> bool {
3710        self.shell_escaped_flags
3711            .unwrap_or_else(|| self.getenv_boolean("CC_SHELL_ESCAPED_FLAGS"))
3712    }
3713
3714    fn get_dwarf_version(&self) -> Option<u32> {
3715        // Tentatively matches the DWARF version defaults as of rustc 1.62.
3716        let target = self.get_target().ok()?;
3717        if matches!(
3718            target.os,
3719            "android" | "dragonfly" | "freebsd" | "netbsd" | "openbsd"
3720        ) || target.vendor == "apple"
3721            || (target.os == "windows" && target.env == "gnu")
3722        {
3723            Some(2)
3724        } else if target.os == "linux" {
3725            Some(4)
3726        } else {
3727            None
3728        }
3729    }
3730
3731    fn get_force_frame_pointer(&self) -> bool {
3732        self.force_frame_pointer.unwrap_or_else(|| self.get_debug())
3733    }
3734
3735    fn get_out_dir(&self) -> Result<Cow<'_, Path>, Error> {
3736        match &self.out_dir {
3737            Some(p) => Ok(Cow::Borrowed(&**p)),
3738            None => self
3739                .getenv("OUT_DIR")
3740                .as_deref()
3741                .map(PathBuf::from)
3742                .map(Cow::Owned)
3743                .ok_or_else(|| {
3744                    Error::new(
3745                        ErrorKind::EnvVarNotFound,
3746                        "Environment variable OUT_DIR not defined.",
3747                    )
3748                }),
3749        }
3750    }
3751
3752    #[allow(clippy::disallowed_methods)]
3753    fn getenv(&self, v: &str) -> Option<Arc<OsStr>> {
3754        // Returns true for environment variables cargo sets for build scripts:
3755        // https://doc.rust-lang.org/cargo/reference/environment-variables.html#environment-variables-cargo-sets-for-build-scripts
3756        //
3757        // This handles more of the vars than we actually use (it tries to check
3758        // complete-ish set), just to avoid needing maintenance if/when new
3759        // calls to `getenv`/`getenv_unwrap` are added.
3760        fn provided_by_cargo(envvar: &str) -> bool {
3761            match envvar {
3762                v if v.starts_with("CARGO") || v.starts_with("RUSTC") => true,
3763                "HOST" | "TARGET" | "RUSTDOC" | "OUT_DIR" | "OPT_LEVEL" | "DEBUG" | "PROFILE"
3764                | "NUM_JOBS" | "RUSTFLAGS" => true,
3765                _ => false,
3766            }
3767        }
3768        if let Some(val) = self.build_cache.env_cache.read().unwrap().get(v).cloned() {
3769            return val;
3770        }
3771        // Excluding `PATH` prevents spurious rebuilds on Windows, see
3772        // <https://github.com/rust-lang/cc-rs/pull/1215> for details.
3773        if self.emit_rerun_if_env_changed && !provided_by_cargo(v) && v != "PATH" {
3774            self.cargo_output
3775                .print_metadata(&format_args!("cargo:rerun-if-env-changed={v}"));
3776        }
3777        let r = env::var_os(v).map(Arc::from);
3778        self.cargo_output.print_metadata(&format_args!(
3779            "{} = {}",
3780            v,
3781            OptionOsStrDisplay(r.as_deref())
3782        ));
3783        self.build_cache
3784            .env_cache
3785            .write()
3786            .unwrap()
3787            .insert(v.into(), r.clone());
3788        r
3789    }
3790
3791    /// get boolean flag that is either true or false
3792    fn getenv_boolean(&self, v: &str) -> bool {
3793        match self.getenv(v) {
3794            Some(s) => &*s != "0" && &*s != "false" && !s.is_empty(),
3795            None => false,
3796        }
3797    }
3798
3799    fn getenv_unwrap(&self, v: &str) -> Result<Arc<OsStr>, Error> {
3800        match self.getenv(v) {
3801            Some(s) => Ok(s),
3802            None => Err(Error::new(
3803                ErrorKind::EnvVarNotFound,
3804                format!("Environment variable {v} not defined."),
3805            )),
3806        }
3807    }
3808
3809    fn getenv_unwrap_str(&self, v: &str) -> Result<String, Error> {
3810        let env = self.getenv_unwrap(v)?;
3811        env.to_str().map(String::from).ok_or_else(|| {
3812            Error::new(
3813                ErrorKind::EnvVarNotFound,
3814                format!("Environment variable {v} is not valid utf-8."),
3815            )
3816        })
3817    }
3818
3819    /// The list of environment variables to check for a given env, in order of priority.
3820    fn target_envs(&self, env: &str) -> Result<[String; 4], Error> {
3821        let target = self.get_raw_target()?;
3822        let kind = if self.get_is_cross_compile()? {
3823            "TARGET"
3824        } else {
3825            "HOST"
3826        };
3827        let target_u = target.replace('-', "_");
3828
3829        Ok([
3830            format!("{env}_{target}"),
3831            format!("{env}_{target_u}"),
3832            format!("{kind}_{env}"),
3833            env.to_string(),
3834        ])
3835    }
3836
3837    /// Get a single-valued environment variable with target variants.
3838    fn getenv_with_target_prefixes(&self, env: &str) -> Result<Arc<OsStr>, Error> {
3839        // Take from first environment variable in the environment.
3840        let res = self
3841            .target_envs(env)?
3842            .iter()
3843            .filter_map(|env| self.getenv(env))
3844            .next();
3845
3846        match res {
3847            Some(res) => Ok(res),
3848            None => Err(Error::new(
3849                ErrorKind::EnvVarNotFound,
3850                format!("could not find environment variable {env}"),
3851            )),
3852        }
3853    }
3854
3855    /// Get values from CFLAGS-style environment variable.
3856    fn envflags(&self, env: &str) -> Result<Option<Vec<String>>, Error> {
3857        // Collect from all environment variables, in reverse order as in
3858        // `getenv_with_target_prefixes` precedence (so that `CFLAGS_$TARGET`
3859        // can override flags in `TARGET_CFLAGS`, which overrides those in
3860        // `CFLAGS`).
3861        let mut any_set = false;
3862        let mut res = vec![];
3863        for env in self.target_envs(env)?.iter().rev() {
3864            if let Some(var) = self.getenv(env) {
3865                any_set = true;
3866
3867                let var = var.to_string_lossy();
3868                if self.get_shell_escaped_flags() {
3869                    res.extend(Shlex::new(&var));
3870                } else {
3871                    res.extend(var.split_ascii_whitespace().map(ToString::to_string));
3872                }
3873            }
3874        }
3875
3876        Ok(if any_set { Some(res) } else { None })
3877    }
3878
3879    fn fix_env_for_apple_os(&self, cmd: &mut Command) -> Result<(), Error> {
3880        let target = self.get_target()?;
3881        if cfg!(target_os = "macos") && target.os == "macos" {
3882            // Additionally, `IPHONEOS_DEPLOYMENT_TARGET` must not be set when using the Xcode linker at
3883            // "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld",
3884            // although this is apparently ignored when using the linker at "/usr/bin/ld".
3885            cmd.env_remove("IPHONEOS_DEPLOYMENT_TARGET");
3886        }
3887        Ok(())
3888    }
3889
3890    fn apple_sdk_root_inner(&self, sdk: &str) -> Result<Arc<OsStr>, Error> {
3891        // Code copied from rustc's compiler/rustc_codegen_ssa/src/back/link.rs.
3892        if let Some(sdkroot) = self.getenv("SDKROOT") {
3893            let p = Path::new(&sdkroot);
3894            let does_sdkroot_contain = |strings: &[&str]| {
3895                let sdkroot_str = p.to_string_lossy();
3896                strings.iter().any(|s| sdkroot_str.contains(s))
3897            };
3898            match sdk {
3899                // Ignore `SDKROOT` if it's clearly set for the wrong platform.
3900                "appletvos"
3901                    if does_sdkroot_contain(&["TVSimulator.platform", "MacOSX.platform"]) => {}
3902                "appletvsimulator"
3903                    if does_sdkroot_contain(&["TVOS.platform", "MacOSX.platform"]) => {}
3904                "iphoneos"
3905                    if does_sdkroot_contain(&["iPhoneSimulator.platform", "MacOSX.platform"]) => {}
3906                "iphonesimulator"
3907                    if does_sdkroot_contain(&["iPhoneOS.platform", "MacOSX.platform"]) => {}
3908                "macosx10.15"
3909                    if does_sdkroot_contain(&["iPhoneOS.platform", "iPhoneSimulator.platform"]) => {
3910                }
3911                "watchos"
3912                    if does_sdkroot_contain(&["WatchSimulator.platform", "MacOSX.platform"]) => {}
3913                "watchsimulator"
3914                    if does_sdkroot_contain(&["WatchOS.platform", "MacOSX.platform"]) => {}
3915                "xros" if does_sdkroot_contain(&["XRSimulator.platform", "MacOSX.platform"]) => {}
3916                "xrsimulator" if does_sdkroot_contain(&["XROS.platform", "MacOSX.platform"]) => {}
3917                // Ignore `SDKROOT` if it's not a valid path.
3918                _ if !p.is_absolute() || p == Path::new("/") || !p.exists() => {}
3919                _ => return Ok(sdkroot),
3920            }
3921        }
3922
3923        let sdk_path = run_output(
3924            self.cmd("xcrun")
3925                .arg("--show-sdk-path")
3926                .arg("--sdk")
3927                .arg(sdk),
3928            &self.cargo_output,
3929        )?;
3930
3931        let sdk_path = match String::from_utf8(sdk_path) {
3932            Ok(p) => p,
3933            Err(_) => {
3934                return Err(Error::new(
3935                    ErrorKind::IOError,
3936                    "Unable to determine Apple SDK path.",
3937                ));
3938            }
3939        };
3940        Ok(Arc::from(OsStr::new(sdk_path.trim())))
3941    }
3942
3943    fn apple_sdk_root(&self, target: &TargetInfo<'_>) -> Result<Arc<OsStr>, Error> {
3944        let sdk = target.apple_sdk_name();
3945
3946        if let Some(ret) = self
3947            .build_cache
3948            .apple_sdk_root_cache
3949            .read()
3950            .expect("apple_sdk_root_cache lock failed")
3951            .get(sdk)
3952            .cloned()
3953        {
3954            return Ok(ret);
3955        }
3956        let sdk_path = self.apple_sdk_root_inner(sdk)?;
3957        self.build_cache
3958            .apple_sdk_root_cache
3959            .write()
3960            .expect("apple_sdk_root_cache lock failed")
3961            .insert(sdk.into(), sdk_path.clone());
3962        Ok(sdk_path)
3963    }
3964
3965    fn apple_deployment_target(&self, target: &TargetInfo<'_>) -> Arc<str> {
3966        let sdk = target.apple_sdk_name();
3967        if let Some(ret) = self
3968            .build_cache
3969            .apple_versions_cache
3970            .read()
3971            .expect("apple_versions_cache lock failed")
3972            .get(sdk)
3973            .cloned()
3974        {
3975            return ret;
3976        }
3977
3978        let default_deployment_from_sdk = || -> Option<Arc<str>> {
3979            let version = run_output(
3980                self.cmd("xcrun")
3981                    .arg("--show-sdk-version")
3982                    .arg("--sdk")
3983                    .arg(sdk),
3984                &self.cargo_output,
3985            )
3986            .ok()?;
3987
3988            Some(Arc::from(std::str::from_utf8(&version).ok()?.trim()))
3989        };
3990
3991        let deployment_from_env = |name: &str| -> Option<Arc<str>> {
3992            // note that self.env isn't hit in production codepaths, its mostly just for tests which don't
3993            // set the real env
3994            self.env
3995                .iter()
3996                .find(|(k, _)| &**k == OsStr::new(name))
3997                .map(|(_, v)| v)
3998                .cloned()
3999                .or_else(|| self.getenv(name))?
4000                .to_str()
4001                .map(Arc::from)
4002        };
4003
4004        // Determines if the acquired deployment target is too low to support modern C++ on some Apple platform.
4005        //
4006        // A long time ago they used libstdc++, but since macOS 10.9 and iOS 7 libc++ has been the library the SDKs provide to link against.
4007        // If a `cc`` config wants to use C++, we round up to these versions as the baseline.
4008        let maybe_cpp_version_baseline = |deployment_target_ver: Arc<str>| -> Option<Arc<str>> {
4009            if !self.cpp {
4010                return Some(deployment_target_ver);
4011            }
4012
4013            let mut deployment_target = deployment_target_ver
4014                .split('.')
4015                .map(|v| v.parse::<u32>().expect("integer version"));
4016
4017            match target.os {
4018                "macos" => {
4019                    let major = deployment_target.next().unwrap_or(0);
4020                    let minor = deployment_target.next().unwrap_or(0);
4021
4022                    // If below 10.9, we ignore it and let the SDK's target definitions handle it.
4023                    if major == 10 && minor < 9 {
4024                        self.cargo_output.print_warning(&format_args!(
4025                            "macOS deployment target ({deployment_target_ver}) too low, it will be increased"
4026                        ));
4027                        return None;
4028                    }
4029                }
4030                "ios" => {
4031                    let major = deployment_target.next().unwrap_or(0);
4032
4033                    // If below 10.7, we ignore it and let the SDK's target definitions handle it.
4034                    if major < 7 {
4035                        self.cargo_output.print_warning(&format_args!(
4036                            "iOS deployment target ({deployment_target_ver}) too low, it will be increased"
4037                        ));
4038                        return None;
4039                    }
4040                }
4041                // watchOS, tvOS, visionOS, and others are all new enough that libc++ is their baseline.
4042                _ => {}
4043            }
4044
4045            // If the deployment target met or exceeded the C++ baseline
4046            Some(deployment_target_ver)
4047        };
4048
4049        // The hardcoded minimums here are subject to change in a future compiler release,
4050        // and only exist as last resort fallbacks. Don't consider them stable.
4051        // `cc` doesn't use rustc's `--print deployment-target`` because the compiler's defaults
4052        // don't align well with Apple's SDKs and other third-party libraries that require ~generally~ higher
4053        // deployment targets. rustc isn't interested in those by default though so its fine to be different here.
4054        //
4055        // If no explicit target is passed, `cc` defaults to the current Xcode SDK's `DefaultDeploymentTarget` for better
4056        // compatibility. This is also the crate's historical behavior and what has become a relied-on value.
4057        //
4058        // The ordering of env -> XCode SDK -> old rustc defaults is intentional for performance when using
4059        // an explicit target.
4060        let version: Arc<str> = match target.os {
4061            "macos" => deployment_from_env("MACOSX_DEPLOYMENT_TARGET")
4062                .and_then(maybe_cpp_version_baseline)
4063                .or_else(default_deployment_from_sdk)
4064                .unwrap_or_else(|| {
4065                    if target.arch == "aarch64" {
4066                        "11.0".into()
4067                    } else {
4068                        let default: Arc<str> = Arc::from("10.7");
4069                        maybe_cpp_version_baseline(default.clone()).unwrap_or(default)
4070                    }
4071                }),
4072
4073            "ios" => deployment_from_env("IPHONEOS_DEPLOYMENT_TARGET")
4074                .and_then(maybe_cpp_version_baseline)
4075                .or_else(default_deployment_from_sdk)
4076                .unwrap_or_else(|| "7.0".into()),
4077
4078            "watchos" => deployment_from_env("WATCHOS_DEPLOYMENT_TARGET")
4079                .or_else(default_deployment_from_sdk)
4080                .unwrap_or_else(|| "5.0".into()),
4081
4082            "tvos" => deployment_from_env("TVOS_DEPLOYMENT_TARGET")
4083                .or_else(default_deployment_from_sdk)
4084                .unwrap_or_else(|| "9.0".into()),
4085
4086            "visionos" => deployment_from_env("XROS_DEPLOYMENT_TARGET")
4087                .or_else(default_deployment_from_sdk)
4088                .unwrap_or_else(|| "1.0".into()),
4089
4090            os => unreachable!("unknown Apple OS: {}", os),
4091        };
4092
4093        self.build_cache
4094            .apple_versions_cache
4095            .write()
4096            .expect("apple_versions_cache lock failed")
4097            .insert(sdk.into(), version.clone());
4098
4099        version
4100    }
4101
4102    fn wasm_musl_sysroot(&self) -> Result<Arc<OsStr>, Error> {
4103        if let Some(musl_sysroot_path) = self.getenv("WASM_MUSL_SYSROOT") {
4104            Ok(musl_sysroot_path)
4105        } else {
4106            Err(Error::new(
4107                ErrorKind::EnvVarNotFound,
4108                "Environment variable WASM_MUSL_SYSROOT not defined for wasm32. Download sysroot from GitHub & setup environment variable MUSL_SYSROOT targeting the folder.",
4109            ))
4110        }
4111    }
4112
4113    fn wasi_sysroot(&self) -> Result<Arc<OsStr>, Error> {
4114        if let Some(wasi_sysroot_path) = self.getenv("WASI_SYSROOT") {
4115            Ok(wasi_sysroot_path)
4116        } else {
4117            Err(Error::new(
4118                ErrorKind::EnvVarNotFound,
4119                "Environment variable WASI_SYSROOT not defined. Download sysroot from GitHub & setup environment variable WASI_SYSROOT targeting the folder.",
4120            ))
4121        }
4122    }
4123
4124    fn cuda_file_count(&self) -> usize {
4125        self.files
4126            .iter()
4127            .filter(|file| file.extension() == Some(OsStr::new("cu")))
4128            .count()
4129    }
4130
4131    fn which(&self, tool: &Path, path_entries: Option<&OsStr>) -> Option<PathBuf> {
4132        fn check_exe(mut exe: PathBuf) -> Option<PathBuf> {
4133            let exe_ext = std::env::consts::EXE_EXTENSION;
4134            let check =
4135                exe.exists() || (!exe_ext.is_empty() && exe.set_extension(exe_ext) && exe.exists());
4136            check.then_some(exe)
4137        }
4138
4139        // Loop through PATH entries searching for the |tool|.
4140        let find_exe_in_path = |path_entries: &OsStr| -> Option<PathBuf> {
4141            env::split_paths(path_entries).find_map(|path_entry| check_exe(path_entry.join(tool)))
4142        };
4143
4144        // If |tool| is not just one "word," assume it's an actual path...
4145        if tool.components().count() > 1 {
4146            check_exe(PathBuf::from(tool))
4147        } else {
4148            path_entries
4149                .and_then(find_exe_in_path)
4150                .or_else(|| find_exe_in_path(&self.getenv("PATH")?))
4151        }
4152    }
4153
4154    /// search for |prog| on 'programs' path in '|cc| -print-search-dirs' output
4155    fn search_programs(
4156        &self,
4157        cc: &mut Command,
4158        prog: &Path,
4159        cargo_output: &CargoOutput,
4160    ) -> Option<PathBuf> {
4161        let search_dirs = run_output(
4162            cc.arg("-print-search-dirs"),
4163            // this doesn't concern the compilation so we always want to show warnings.
4164            cargo_output,
4165        )
4166        .ok()?;
4167        // clang driver appears to be forcing UTF-8 output even on Windows,
4168        // hence from_utf8 is assumed to be usable in all cases.
4169        let search_dirs = std::str::from_utf8(&search_dirs).ok()?;
4170        for dirs in search_dirs.split(['\r', '\n']) {
4171            if let Some(path) = dirs.strip_prefix("programs: =") {
4172                return self.which(prog, Some(OsStr::new(path)));
4173            }
4174        }
4175        None
4176    }
4177
4178    fn windows_registry_find(&self, target: &TargetInfo<'_>, tool: &str) -> Option<Command> {
4179        self.windows_registry_find_tool(target, tool)
4180            .map(|c| c.to_command())
4181    }
4182
4183    fn windows_registry_find_tool(&self, target: &TargetInfo<'_>, tool: &str) -> Option<Tool> {
4184        struct BuildEnvGetter<'s>(&'s Build);
4185
4186        impl windows_registry::EnvGetter for BuildEnvGetter<'_> {
4187            fn get_env(&self, name: &str) -> Option<windows_registry::Env> {
4188                self.0.getenv(name).map(windows_registry::Env::Arced)
4189            }
4190        }
4191
4192        if target.env != "msvc" {
4193            return None;
4194        }
4195
4196        windows_registry::find_tool_inner(target.full_arch, tool, &BuildEnvGetter(self))
4197    }
4198}
4199
4200impl Default for Build {
4201    fn default() -> Build {
4202        Build::new()
4203    }
4204}
4205
4206fn fail(s: &str) -> ! {
4207    eprintln!("\n\nerror occurred in cc-rs: {s}\n\n");
4208    std::process::exit(1);
4209}
4210
4211// Use by default minimum available API level
4212// See note about naming here
4213// https://android.googlesource.com/platform/ndk/+/refs/heads/ndk-release-r21/docs/BuildSystemMaintainers.md#Clang
4214static NEW_STANDALONE_ANDROID_COMPILERS: [&str; 4] = [
4215    "aarch64-linux-android21-clang",
4216    "armv7a-linux-androideabi16-clang",
4217    "i686-linux-android16-clang",
4218    "x86_64-linux-android21-clang",
4219];
4220
4221// New "standalone" C/C++ cross-compiler executables from recent Android NDK
4222// are just shell scripts that call main clang binary (from Android NDK) with
4223// proper `--target` argument.
4224//
4225// For example, armv7a-linux-androideabi16-clang passes
4226// `--target=armv7a-linux-androideabi16` to clang.
4227// So to construct proper command line check if
4228// `--target` argument would be passed or not to clang
4229fn android_clang_compiler_uses_target_arg_internally(clang_path: &Path) -> bool {
4230    if let Some(filename) = clang_path.file_name() {
4231        if let Some(filename_str) = filename.to_str() {
4232            if let Some(idx) = filename_str.rfind('-') {
4233                return filename_str.split_at(idx).0.contains("android");
4234            }
4235        }
4236    }
4237    false
4238}
4239
4240// FIXME: Use parsed target.
4241fn autodetect_android_compiler(raw_target: &str, gnu: &str, clang: &str) -> String {
4242    let new_clang_key = match raw_target {
4243        "aarch64-linux-android" => Some("aarch64"),
4244        "armv7-linux-androideabi" => Some("armv7a"),
4245        "i686-linux-android" => Some("i686"),
4246        "x86_64-linux-android" => Some("x86_64"),
4247        _ => None,
4248    };
4249
4250    let new_clang = new_clang_key
4251        .map(|key| {
4252            NEW_STANDALONE_ANDROID_COMPILERS
4253                .iter()
4254                .find(|x| x.starts_with(key))
4255        })
4256        .unwrap_or(None);
4257
4258    if let Some(new_clang) = new_clang {
4259        if Command::new(new_clang).output().is_ok() {
4260            return (*new_clang).into();
4261        }
4262    }
4263
4264    let target = raw_target
4265        .replace("armv7neon", "arm")
4266        .replace("armv7", "arm")
4267        .replace("thumbv7neon", "arm")
4268        .replace("thumbv7", "arm");
4269    let gnu_compiler = format!("{target}-{gnu}");
4270    let clang_compiler = format!("{target}-{clang}");
4271
4272    // On Windows, the Android clang compiler is provided as a `.cmd` file instead
4273    // of a `.exe` file. `std::process::Command` won't run `.cmd` files unless the
4274    // `.cmd` is explicitly appended to the command name, so we do that here.
4275    let clang_compiler_cmd = format!("{target}-{clang}.cmd");
4276
4277    // Check if gnu compiler is present
4278    // if not, use clang
4279    if Command::new(&gnu_compiler).output().is_ok() {
4280        gnu_compiler
4281    } else if cfg!(windows) && Command::new(&clang_compiler_cmd).output().is_ok() {
4282        clang_compiler_cmd
4283    } else {
4284        clang_compiler
4285    }
4286}
4287
4288// Rust and clang/cc don't agree on how to name the target.
4289fn map_darwin_target_from_rust_to_compiler_architecture<'a>(target: &TargetInfo<'a>) -> &'a str {
4290    match target.full_arch {
4291        "aarch64" => "arm64",
4292        "arm64_32" => "arm64_32",
4293        "arm64e" => "arm64e",
4294        "armv7k" => "armv7k",
4295        "armv7s" => "armv7s",
4296        "i386" => "i386",
4297        "i686" => "i386",
4298        "powerpc" => "ppc",
4299        "powerpc64" => "ppc64",
4300        "x86_64" => "x86_64",
4301        "x86_64h" => "x86_64h",
4302        arch => arch,
4303    }
4304}
4305
4306#[derive(Clone, Copy, PartialEq)]
4307enum AsmFileExt {
4308    /// `.asm` files. On MSVC targets, we assume these should be passed to MASM
4309    /// (`ml{,64}.exe`).
4310    DotAsm,
4311    /// `.s` or `.S` files, which do not have the special handling on MSVC targets.
4312    DotS,
4313}
4314
4315impl AsmFileExt {
4316    fn from_path(file: &Path) -> Option<Self> {
4317        if let Some(ext) = file.extension() {
4318            if let Some(ext) = ext.to_str() {
4319                let ext = ext.to_lowercase();
4320                match &*ext {
4321                    "asm" => return Some(AsmFileExt::DotAsm),
4322                    "s" => return Some(AsmFileExt::DotS),
4323                    _ => return None,
4324                }
4325            }
4326        }
4327        None
4328    }
4329}
4330
4331/// Returns true if `cc` has been disabled by `CC_FORCE_DISABLE`.
4332fn is_disabled() -> bool {
4333    static CACHE: AtomicU8 = AtomicU8::new(0);
4334
4335    let val = CACHE.load(Relaxed);
4336    // We manually cache the environment var, since we need it in some places
4337    // where we don't have access to a `Build` instance.
4338    #[allow(clippy::disallowed_methods)]
4339    fn compute_is_disabled() -> bool {
4340        match std::env::var_os("CC_FORCE_DISABLE") {
4341            // Not set? Not disabled.
4342            None => false,
4343            // Respect `CC_FORCE_DISABLE=0` and some simple synonyms, otherwise
4344            // we're disabled. This intentionally includes `CC_FORCE_DISABLE=""`
4345            Some(v) => &*v != "0" && &*v != "false" && &*v != "no",
4346        }
4347    }
4348    match val {
4349        2 => true,
4350        1 => false,
4351        0 => {
4352            let truth = compute_is_disabled();
4353            let encoded_truth = if truth { 2u8 } else { 1 };
4354            // Might race against another thread, but we'd both be setting the
4355            // same value so it should be fine.
4356            CACHE.store(encoded_truth, Relaxed);
4357            truth
4358        }
4359        _ => unreachable!(),
4360    }
4361}
4362
4363/// Automates the `if is_disabled() { return error }` check and ensures
4364/// we produce a consistent error message for it.
4365fn check_disabled() -> Result<(), Error> {
4366    if is_disabled() {
4367        return Err(Error::new(
4368            ErrorKind::Disabled,
4369            "the `cc` crate's functionality has been disabled by the `CC_FORCE_DISABLE` environment variable."
4370        ));
4371    }
4372    Ok(())
4373}
4374
4375#[cfg(test)]
4376mod tests {
4377    use super::*;
4378
4379    #[test]
4380    fn test_android_clang_compiler_uses_target_arg_internally() {
4381        for version in 16..21 {
4382            assert!(android_clang_compiler_uses_target_arg_internally(
4383                &PathBuf::from(format!("armv7a-linux-androideabi{}-clang", version))
4384            ));
4385            assert!(android_clang_compiler_uses_target_arg_internally(
4386                &PathBuf::from(format!("armv7a-linux-androideabi{}-clang++", version))
4387            ));
4388        }
4389        assert!(!android_clang_compiler_uses_target_arg_internally(
4390            &PathBuf::from("clang-i686-linux-android")
4391        ));
4392        assert!(!android_clang_compiler_uses_target_arg_internally(
4393            &PathBuf::from("clang")
4394        ));
4395        assert!(!android_clang_compiler_uses_target_arg_internally(
4396            &PathBuf::from("clang++")
4397        ));
4398    }
4399}