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::*;
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 only trigger
1245 /// rebuild when detected environment changes, by default build script is
1246 /// always run on every compilation if no rerun cargo metadata is emitted.
1247 ///
1248 /// NOTE that cc does not emit metadata to detect changes for `PATH`, since it could
1249 /// be changed every comilation yet does not affect the result of compilation
1250 /// (i.e. rust-analyzer adds temporary directory to `PATH`).
1251 ///
1252 /// cc in general, has no way detecting changes to compiler, as there are so many ways to
1253 /// change it and sidestep the detection, for example the compiler might be wrapped in a script
1254 /// so detecting change of the file, or using checksum won't work.
1255 ///
1256 /// We recommend users to decide for themselves, if they want rebuild if the compiler has been upgraded
1257 /// or changed, and how to detect that.
1258 ///
1259 /// This has no effect if the `cargo_metadata` option is `false`.
1260 ///
1261 /// This option defaults to `true`.
1262 pub fn emit_rerun_if_env_changed(&mut self, emit_rerun_if_env_changed: bool) -> &mut Build {
1263 self.emit_rerun_if_env_changed = emit_rerun_if_env_changed;
1264 self
1265 }
1266
1267 /// Configures whether the /MT flag or the /MD flag will be passed to msvc build tools.
1268 ///
1269 /// This option defaults to `false`, and affect only msvc targets.
1270 pub fn static_crt(&mut self, static_crt: bool) -> &mut Build {
1271 self.static_crt = Some(static_crt);
1272 self
1273 }
1274
1275 /// Configure whether *FLAGS variables are parsed using `shlex`, similarly to `make` and
1276 /// `cmake`.
1277 ///
1278 /// This option defaults to `false`.
1279 pub fn shell_escaped_flags(&mut self, shell_escaped_flags: bool) -> &mut Build {
1280 self.shell_escaped_flags = Some(shell_escaped_flags);
1281 self
1282 }
1283
1284 /// Configure whether cc should automatically inherit compatible flags passed to rustc
1285 /// from `CARGO_ENCODED_RUSTFLAGS`.
1286 ///
1287 /// This option defaults to `true`.
1288 pub fn inherit_rustflags(&mut self, inherit_rustflags: bool) -> &mut Build {
1289 self.inherit_rustflags = inherit_rustflags;
1290 self
1291 }
1292
1293 #[doc(hidden)]
1294 pub fn __set_env<A, B>(&mut self, a: A, b: B) -> &mut Build
1295 where
1296 A: AsRef<OsStr>,
1297 B: AsRef<OsStr>,
1298 {
1299 self.env.push((a.as_ref().into(), b.as_ref().into()));
1300 self
1301 }
1302}
1303
1304/// Invoke or fetch the compiler or archiver.
1305impl Build {
1306 /// Run the compiler to test if it accepts the given flag.
1307 ///
1308 /// For a convenience method for setting flags conditionally,
1309 /// see `flag_if_supported()`.
1310 ///
1311 /// It may return error if it's unable to run the compiler with a test file
1312 /// (e.g. the compiler is missing or a write to the `out_dir` failed).
1313 ///
1314 /// Note: Once computed, the result of this call is stored in the
1315 /// `known_flag_support` field. If `is_flag_supported(flag)`
1316 /// is called again, the result will be read from the hash table.
1317 pub fn is_flag_supported(&self, flag: impl AsRef<OsStr>) -> Result<bool, Error> {
1318 self.is_flag_supported_inner(
1319 flag.as_ref(),
1320 &self.get_base_compiler()?,
1321 &self.get_target()?,
1322 )
1323 }
1324
1325 fn ensure_check_file(&self) -> Result<PathBuf, Error> {
1326 let out_dir = self.get_out_dir()?;
1327 let src = if self.cuda {
1328 assert!(self.cpp);
1329 out_dir.join("flag_check.cu")
1330 } else if self.cpp {
1331 out_dir.join("flag_check.cpp")
1332 } else {
1333 out_dir.join("flag_check.c")
1334 };
1335
1336 if !src.exists() {
1337 let mut f = fs::File::create(&src)?;
1338 write!(f, "int main(void) {{ return 0; }}")?;
1339 }
1340
1341 Ok(src)
1342 }
1343
1344 fn is_flag_supported_inner(
1345 &self,
1346 flag: &OsStr,
1347 tool: &Tool,
1348 target: &TargetInfo<'_>,
1349 ) -> Result<bool, Error> {
1350 let compiler_flag = CompilerFlag {
1351 compiler: tool.path().into(),
1352 flag: flag.into(),
1353 };
1354
1355 if let Some(is_supported) = self
1356 .build_cache
1357 .known_flag_support_status_cache
1358 .read()
1359 .unwrap()
1360 .get(&compiler_flag)
1361 .cloned()
1362 {
1363 return Ok(is_supported);
1364 }
1365
1366 let out_dir = self.get_out_dir()?;
1367 let src = self.ensure_check_file()?;
1368 let obj = out_dir.join("flag_check");
1369
1370 let mut compiler = {
1371 let mut cfg = Build::new();
1372 cfg.flag(flag)
1373 .compiler(tool.path())
1374 .cargo_metadata(self.cargo_output.metadata)
1375 .opt_level(0)
1376 .debug(false)
1377 .cpp(self.cpp)
1378 .cuda(self.cuda)
1379 .inherit_rustflags(false)
1380 .emit_rerun_if_env_changed(self.emit_rerun_if_env_changed);
1381 if let Some(target) = &self.target {
1382 cfg.target(target);
1383 }
1384 if let Some(host) = &self.host {
1385 cfg.host(host);
1386 }
1387 cfg.try_get_compiler()?
1388 };
1389
1390 // Clang uses stderr for verbose output, which yields a false positive
1391 // result if the CFLAGS/CXXFLAGS include -v to aid in debugging.
1392 if compiler.family.verbose_stderr() {
1393 compiler.remove_arg("-v".into());
1394 }
1395 if compiler.is_like_clang() {
1396 // Avoid reporting that the arg is unsupported just because the
1397 // compiler complains that it wasn't used.
1398 compiler.push_cc_arg("-Wno-unused-command-line-argument".into());
1399 }
1400
1401 let mut cmd = compiler.to_command();
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: is_arm(target),
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 return self.compile_objects_sequential(objs);
1687 }
1688
1689 // Limit our parallelism globally with a jobserver.
1690 let mut tokens = parallel::job_token::ActiveJobTokenServer::new();
1691
1692 // When compiling objects in parallel we do a few dirty tricks to speed
1693 // things up:
1694 //
1695 // * First is that we use the `jobserver` crate to limit the parallelism
1696 // of this build script. The `jobserver` crate will use a jobserver
1697 // configured by Cargo for build scripts to ensure that parallelism is
1698 // coordinated across C compilations and Rust compilations. Before we
1699 // compile anything we make sure to wait until we acquire a token.
1700 //
1701 // Note that this jobserver is cached globally so we only used one per
1702 // process and only worry about creating it once.
1703 //
1704 // * Next we use spawn the process to actually compile objects in
1705 // parallel after we've acquired a token to perform some work
1706 //
1707 // With all that in mind we compile all objects in a loop here, after we
1708 // acquire the appropriate tokens, Once all objects have been compiled
1709 // we wait on all the processes and propagate the results of compilation.
1710
1711 let pendings =
1712 Cell::new(Vec::<(Command, KillOnDrop, parallel::job_token::JobToken)>::new());
1713 let is_disconnected = Cell::new(false);
1714 let has_made_progress = Cell::new(false);
1715
1716 let wait_future = async {
1717 let mut error = None;
1718 // Buffer the stdout
1719 let mut stdout = io::BufWriter::with_capacity(128, io::stdout());
1720
1721 loop {
1722 // If the other end of the pipe is already disconnected, then we're not gonna get any new jobs,
1723 // so it doesn't make sense to reuse the tokens; in fact,
1724 // releasing them as soon as possible (once we know that the other end is disconnected) is beneficial.
1725 // Imagine that the last file built takes an hour to finish; in this scenario,
1726 // by not releasing the tokens before that last file is done we would effectively block other processes from
1727 // starting sooner - even though we only need one token for that last file, not N others that were acquired.
1728
1729 let mut pendings_is_empty = false;
1730
1731 cell_update(&pendings, |mut pendings| {
1732 // Try waiting on them.
1733 pendings.retain_mut(|(cmd, child, _token)| {
1734 match try_wait_on_child(cmd, &mut child.0, &mut stdout, &mut child.1) {
1735 Ok(Some(())) => {
1736 // Task done, remove the entry
1737 has_made_progress.set(true);
1738 false
1739 }
1740 Ok(None) => true, // Task still not finished, keep the entry
1741 Err(err) => {
1742 // Task fail, remove the entry.
1743 // Since we can only return one error, log the error to make
1744 // sure users always see all the compilation failures.
1745 has_made_progress.set(true);
1746
1747 if self.cargo_output.warnings {
1748 let _ = writeln!(stdout, "cargo:warning={}", err);
1749 }
1750 error = Some(err);
1751
1752 false
1753 }
1754 }
1755 });
1756 pendings_is_empty = pendings.is_empty();
1757 pendings
1758 });
1759
1760 if pendings_is_empty && is_disconnected.get() {
1761 break if let Some(err) = error {
1762 Err(err)
1763 } else {
1764 Ok(())
1765 };
1766 }
1767
1768 YieldOnce::default().await;
1769 }
1770 };
1771 let spawn_future = async {
1772 for obj in objs {
1773 let mut cmd = self.create_compile_object_cmd(obj)?;
1774 let token = tokens.acquire().await?;
1775 let mut child = spawn(&mut cmd, &self.cargo_output)?;
1776 let mut stderr_forwarder = StderrForwarder::new(&mut child);
1777 stderr_forwarder.set_non_blocking()?;
1778
1779 cell_update(&pendings, |mut pendings| {
1780 pendings.push((cmd, KillOnDrop(child, stderr_forwarder), token));
1781 pendings
1782 });
1783
1784 has_made_progress.set(true);
1785 }
1786 is_disconnected.set(true);
1787
1788 Ok::<_, Error>(())
1789 };
1790
1791 return block_on(wait_future, spawn_future, &has_made_progress);
1792
1793 struct KillOnDrop(Child, StderrForwarder);
1794
1795 impl Drop for KillOnDrop {
1796 fn drop(&mut self) {
1797 let child = &mut self.0;
1798
1799 child.kill().ok();
1800 }
1801 }
1802
1803 fn cell_update<T, F>(cell: &Cell<T>, f: F)
1804 where
1805 T: Default,
1806 F: FnOnce(T) -> T,
1807 {
1808 let old = cell.take();
1809 let new = f(old);
1810 cell.set(new);
1811 }
1812 }
1813
1814 fn compile_objects_sequential(&self, objs: &[Object]) -> Result<(), Error> {
1815 for obj in objs {
1816 let mut cmd = self.create_compile_object_cmd(obj)?;
1817 run(&mut cmd, &self.cargo_output)?;
1818 }
1819
1820 Ok(())
1821 }
1822
1823 #[cfg(not(feature = "parallel"))]
1824 fn compile_objects(&self, objs: &[Object]) -> Result<(), Error> {
1825 check_disabled()?;
1826
1827 self.compile_objects_sequential(objs)
1828 }
1829
1830 fn create_compile_object_cmd(&self, obj: &Object) -> Result<Command, Error> {
1831 let asm_ext = AsmFileExt::from_path(&obj.src);
1832 let is_asm = asm_ext.is_some();
1833 let target = self.get_target()?;
1834 let msvc = target.env == "msvc";
1835 let compiler = self.try_get_compiler()?;
1836
1837 let is_assembler_msvc = msvc && asm_ext == Some(AsmFileExt::DotAsm);
1838 let mut cmd = if is_assembler_msvc {
1839 self.msvc_macro_assembler()?
1840 } else {
1841 let mut cmd = compiler.to_command();
1842 for (a, b) in self.env.iter() {
1843 cmd.env(a, b);
1844 }
1845 cmd
1846 };
1847 let is_arm = is_arm(&target);
1848 command_add_output_file(
1849 &mut cmd,
1850 &obj.dst,
1851 CmdAddOutputFileArgs {
1852 cuda: self.cuda,
1853 is_assembler_msvc,
1854 msvc: compiler.is_like_msvc(),
1855 clang: compiler.is_like_clang(),
1856 gnu: compiler.is_like_gnu(),
1857 is_asm,
1858 is_arm,
1859 },
1860 );
1861 // armasm and armasm64 don't requrie -c option
1862 if !is_assembler_msvc || !is_arm {
1863 cmd.arg("-c");
1864 }
1865 if self.cuda && self.cuda_file_count() > 1 {
1866 cmd.arg("--device-c");
1867 }
1868 if is_asm {
1869 cmd.args(self.asm_flags.iter().map(std::ops::Deref::deref));
1870 }
1871
1872 if compiler.supports_path_delimiter() && !is_assembler_msvc {
1873 // #513: For `clang-cl`, separate flags/options from the input file.
1874 // When cross-compiling macOS -> Windows, this avoids interpreting
1875 // common `/Users/...` paths as the `/U` flag and triggering
1876 // `-Wslash-u-filename` warning.
1877 cmd.arg("--");
1878 }
1879 cmd.arg(&obj.src);
1880
1881 if cfg!(target_os = "macos") {
1882 self.fix_env_for_apple_os(&mut cmd)?;
1883 }
1884
1885 Ok(cmd)
1886 }
1887
1888 /// This will return a result instead of panicking; see [`Self::expand()`] for
1889 /// the complete description.
1890 pub fn try_expand(&self) -> Result<Vec<u8>, Error> {
1891 let compiler = self.try_get_compiler()?;
1892 let mut cmd = compiler.to_command();
1893 for (a, b) in self.env.iter() {
1894 cmd.env(a, b);
1895 }
1896 cmd.arg("-E");
1897
1898 assert!(
1899 self.files.len() <= 1,
1900 "Expand may only be called for a single file"
1901 );
1902
1903 let is_asm = self
1904 .files
1905 .iter()
1906 .map(std::ops::Deref::deref)
1907 .find_map(AsmFileExt::from_path)
1908 .is_some();
1909
1910 if compiler.family == (ToolFamily::Msvc { clang_cl: true }) && !is_asm {
1911 // #513: For `clang-cl`, separate flags/options from the input file.
1912 // When cross-compiling macOS -> Windows, this avoids interpreting
1913 // common `/Users/...` paths as the `/U` flag and triggering
1914 // `-Wslash-u-filename` warning.
1915 cmd.arg("--");
1916 }
1917
1918 cmd.args(self.files.iter().map(std::ops::Deref::deref));
1919
1920 run_output(&mut cmd, &self.cargo_output)
1921 }
1922
1923 /// Run the compiler, returning the macro-expanded version of the input files.
1924 ///
1925 /// This is only relevant for C and C++ files.
1926 ///
1927 /// # Panics
1928 /// Panics if more than one file is present in the config, or if compiler
1929 /// path has an invalid file name.
1930 ///
1931 /// # Example
1932 /// ```no_run
1933 /// let out = cc::Build::new().file("src/foo.c").expand();
1934 /// ```
1935 pub fn expand(&self) -> Vec<u8> {
1936 match self.try_expand() {
1937 Err(e) => fail(&e.message),
1938 Ok(v) => v,
1939 }
1940 }
1941
1942 /// Get the compiler that's in use for this configuration.
1943 ///
1944 /// This function will return a `Tool` which represents the culmination
1945 /// of this configuration at a snapshot in time. The returned compiler can
1946 /// be inspected (e.g. the path, arguments, environment) to forward along to
1947 /// other tools, or the `to_command` method can be used to invoke the
1948 /// compiler itself.
1949 ///
1950 /// This method will take into account all configuration such as debug
1951 /// information, optimization level, include directories, defines, etc.
1952 /// Additionally, the compiler binary in use follows the standard
1953 /// conventions for this path, e.g. looking at the explicitly set compiler,
1954 /// environment variables (a number of which are inspected here), and then
1955 /// falling back to the default configuration.
1956 ///
1957 /// # Panics
1958 ///
1959 /// Panics if an error occurred while determining the architecture.
1960 pub fn get_compiler(&self) -> Tool {
1961 match self.try_get_compiler() {
1962 Ok(tool) => tool,
1963 Err(e) => fail(&e.message),
1964 }
1965 }
1966
1967 /// Get the compiler that's in use for this configuration.
1968 ///
1969 /// This will return a result instead of panicking; see
1970 /// [`get_compiler()`](Self::get_compiler) for the complete description.
1971 pub fn try_get_compiler(&self) -> Result<Tool, Error> {
1972 let opt_level = self.get_opt_level()?;
1973 let target = self.get_target()?;
1974
1975 let mut cmd = self.get_base_compiler()?;
1976
1977 // The flags below are added in roughly the following order:
1978 // 1. Default flags
1979 // - Controlled by `cc-rs`.
1980 // 2. `rustc`-inherited flags
1981 // - Controlled by `rustc`.
1982 // 3. Builder flags
1983 // - Controlled by the developer using `cc-rs` in e.g. their `build.rs`.
1984 // 4. Environment flags
1985 // - Controlled by the end user.
1986 //
1987 // This is important to allow later flags to override previous ones.
1988
1989 // Copied from <https://github.com/rust-lang/rust/blob/5db81020006d2920fc9c62ffc0f4322f90bffa04/compiler/rustc_codegen_ssa/src/back/linker.rs#L27-L38>
1990 //
1991 // Disables non-English messages from localized linkers.
1992 // Such messages may cause issues with text encoding on Windows
1993 // and prevent inspection of msvc output in case of errors, which we occasionally do.
1994 // This should be acceptable because other messages from rustc are in English anyway,
1995 // and may also be desirable to improve searchability of the compiler diagnostics.
1996 if matches!(cmd.family, ToolFamily::Msvc { clang_cl: false }) {
1997 cmd.env.push(("VSLANG".into(), "1033".into()));
1998 } else {
1999 cmd.env.push(("LC_ALL".into(), "C".into()));
2000 }
2001
2002 // Disable default flag generation via `no_default_flags` or environment variable
2003 let no_defaults = self.no_default_flags || self.getenv_boolean("CRATE_CC_NO_DEFAULTS");
2004 if !no_defaults {
2005 self.add_default_flags(&mut cmd, &target, &opt_level)?;
2006 }
2007
2008 // Specify various flags that are not considered part of the default flags above.
2009 // FIXME(madsmtm): Should these be considered part of the defaults? If no, why not?
2010 if let Some(ref std) = self.std {
2011 let separator = match cmd.family {
2012 ToolFamily::Msvc { .. } => ':',
2013 ToolFamily::Gnu | ToolFamily::Clang { .. } => '=',
2014 };
2015 cmd.push_cc_arg(format!("-std{separator}{std}").into());
2016 }
2017 for directory in self.include_directories.iter() {
2018 cmd.args.push("-I".into());
2019 cmd.args.push(directory.as_os_str().into());
2020 }
2021 if self.warnings_into_errors {
2022 let warnings_to_errors_flag = cmd.family.warnings_to_errors_flag().into();
2023 cmd.push_cc_arg(warnings_to_errors_flag);
2024 }
2025
2026 // If warnings and/or extra_warnings haven't been explicitly set,
2027 // then we set them only if the environment doesn't already have
2028 // CFLAGS/CXXFLAGS, since those variables presumably already contain
2029 // the desired set of warnings flags.
2030 let envflags = self.envflags(if self.cpp { "CXXFLAGS" } else { "CFLAGS" })?;
2031 if self.warnings.unwrap_or(envflags.is_none()) {
2032 let wflags = cmd.family.warnings_flags().into();
2033 cmd.push_cc_arg(wflags);
2034 }
2035 if self.extra_warnings.unwrap_or(envflags.is_none()) {
2036 if let Some(wflags) = cmd.family.extra_warnings_flags() {
2037 cmd.push_cc_arg(wflags.into());
2038 }
2039 }
2040
2041 // Add cc flags inherited from matching rustc flags.
2042 if self.inherit_rustflags {
2043 self.add_inherited_rustflags(&mut cmd, &target)?;
2044 }
2045
2046 // Set flags configured in the builder (do this second-to-last, to allow these to override
2047 // everything above).
2048 for flag in self.flags.iter() {
2049 cmd.args.push((**flag).into());
2050 }
2051 for flag in self.flags_supported.iter() {
2052 if self
2053 .is_flag_supported_inner(flag, &cmd, &target)
2054 .unwrap_or(false)
2055 {
2056 cmd.push_cc_arg((**flag).into());
2057 }
2058 }
2059 for (key, value) in self.definitions.iter() {
2060 if let Some(ref value) = *value {
2061 cmd.args.push(format!("-D{key}={value}").into());
2062 } else {
2063 cmd.args.push(format!("-D{key}").into());
2064 }
2065 }
2066
2067 // Set flags from the environment (do this last, to allow these to override everything else).
2068 if let Some(flags) = &envflags {
2069 for arg in flags {
2070 cmd.push_cc_arg(arg.into());
2071 }
2072 }
2073
2074 Ok(cmd)
2075 }
2076
2077 fn add_default_flags(
2078 &self,
2079 cmd: &mut Tool,
2080 target: &TargetInfo<'_>,
2081 opt_level: &str,
2082 ) -> Result<(), Error> {
2083 let raw_target = self.get_raw_target()?;
2084 // Non-target flags
2085 // If the flag is not conditioned on target variable, it belongs here :)
2086 match cmd.family {
2087 ToolFamily::Msvc { .. } => {
2088 cmd.push_cc_arg("-nologo".into());
2089
2090 let crt_flag = match self.static_crt {
2091 Some(true) => "-MT",
2092 Some(false) => "-MD",
2093 None => {
2094 let features = self.getenv("CARGO_CFG_TARGET_FEATURE");
2095 let features = features.as_deref().unwrap_or_default();
2096 if features.to_string_lossy().contains("crt-static") {
2097 "-MT"
2098 } else {
2099 "-MD"
2100 }
2101 }
2102 };
2103 cmd.push_cc_arg(crt_flag.into());
2104
2105 match opt_level {
2106 // Msvc uses /O1 to enable all optimizations that minimize code size.
2107 "z" | "s" | "1" => cmd.push_opt_unless_duplicate("-O1".into()),
2108 // -O3 is a valid value for gcc and clang compilers, but not msvc. Cap to /O2.
2109 "2" | "3" => cmd.push_opt_unless_duplicate("-O2".into()),
2110 _ => {}
2111 }
2112 }
2113 ToolFamily::Gnu | ToolFamily::Clang { .. } => {
2114 // arm-linux-androideabi-gcc 4.8 shipped with Android NDK does
2115 // not support '-Oz'
2116 if opt_level == "z" && !cmd.is_like_clang() {
2117 cmd.push_opt_unless_duplicate("-Os".into());
2118 } else {
2119 cmd.push_opt_unless_duplicate(format!("-O{opt_level}").into());
2120 }
2121
2122 if cmd.is_like_clang() && target.os == "android" {
2123 // For compatibility with code that doesn't use pre-defined `__ANDROID__` macro.
2124 // If compiler used via ndk-build or cmake (officially supported build methods)
2125 // this macros is defined.
2126 // See https://android.googlesource.com/platform/ndk/+/refs/heads/ndk-release-r21/build/cmake/android.toolchain.cmake#456
2127 // https://android.googlesource.com/platform/ndk/+/refs/heads/ndk-release-r21/build/core/build-binary.mk#141
2128 cmd.push_opt_unless_duplicate("-DANDROID".into());
2129 }
2130
2131 if target.os != "ios"
2132 && target.os != "watchos"
2133 && target.os != "tvos"
2134 && target.os != "visionos"
2135 {
2136 cmd.push_cc_arg("-ffunction-sections".into());
2137 cmd.push_cc_arg("-fdata-sections".into());
2138 }
2139 // Disable generation of PIC on bare-metal for now: rust-lld doesn't support this yet
2140 //
2141 // `rustc` also defaults to disable PIC on WASM:
2142 // <https://github.com/rust-lang/rust/blob/1.82.0/compiler/rustc_target/src/spec/base/wasm.rs#L101-L108>
2143 if self.pic.unwrap_or(
2144 target.os != "windows"
2145 && target.os != "none"
2146 && target.os != "uefi"
2147 && target.arch != "wasm32"
2148 && target.arch != "wasm64",
2149 ) {
2150 cmd.push_cc_arg("-fPIC".into());
2151 // PLT only applies if code is compiled with PIC support,
2152 // and only for ELF targets.
2153 if (target.os == "linux" || target.os == "android")
2154 && !self.use_plt.unwrap_or(true)
2155 {
2156 cmd.push_cc_arg("-fno-plt".into());
2157 }
2158 }
2159 if target.arch == "wasm32" || target.arch == "wasm64" {
2160 // WASI does not support exceptions yet.
2161 // https://github.com/WebAssembly/exception-handling
2162 //
2163 // `rustc` also defaults to (currently) disable exceptions
2164 // on all WASM targets:
2165 // <https://github.com/rust-lang/rust/blob/1.82.0/compiler/rustc_target/src/spec/base/wasm.rs#L72-L77>
2166 cmd.push_cc_arg("-fno-exceptions".into());
2167 }
2168
2169 if target.os == "wasi" {
2170 // Link clang sysroot
2171 if let Ok(wasi_sysroot) = self.wasi_sysroot() {
2172 cmd.push_cc_arg(
2173 format!("--sysroot={}", Path::new(&wasi_sysroot).display()).into(),
2174 );
2175 }
2176
2177 // FIXME(madsmtm): Read from `target_features` instead?
2178 if raw_target.contains("threads") {
2179 cmd.push_cc_arg("-pthread".into());
2180 }
2181 }
2182
2183 if target.os == "nto" {
2184 // Select the target with `-V`, see qcc documentation:
2185 // QNX 7.1: https://www.qnx.com/developers/docs/7.1/index.html#com.qnx.doc.neutrino.utilities/topic/q/qcc.html
2186 // QNX 8.0: https://www.qnx.com/developers/docs/8.0/com.qnx.doc.neutrino.utilities/topic/q/qcc.html
2187 // This assumes qcc/q++ as compiler, which is currently the only supported compiler for QNX.
2188 // See for details: https://github.com/rust-lang/cc-rs/pull/1319
2189 let arg = match target.full_arch {
2190 "x86" | "i586" => "-Vgcc_ntox86_cxx",
2191 "aarch64" => "-Vgcc_ntoaarch64le_cxx",
2192 "x86_64" => "-Vgcc_ntox86_64_cxx",
2193 _ => {
2194 return Err(Error::new(
2195 ErrorKind::InvalidTarget,
2196 format!("Unknown architecture for Neutrino QNX: {}", target.arch),
2197 ))
2198 }
2199 };
2200 cmd.push_cc_arg(arg.into());
2201 }
2202 }
2203 }
2204
2205 if self.get_debug() {
2206 if self.cuda {
2207 // NVCC debug flag
2208 cmd.args.push("-G".into());
2209 }
2210 let family = cmd.family;
2211 family.add_debug_flags(cmd, self.get_dwarf_version());
2212 }
2213
2214 if self.get_force_frame_pointer() {
2215 let family = cmd.family;
2216 family.add_force_frame_pointer(cmd);
2217 }
2218
2219 if !cmd.is_like_msvc() {
2220 if target.arch == "x86" {
2221 cmd.args.push("-m32".into());
2222 } else if target.abi == "x32" {
2223 cmd.args.push("-mx32".into());
2224 } else if target.os == "aix" {
2225 if cmd.family == ToolFamily::Gnu {
2226 cmd.args.push("-maix64".into());
2227 } else {
2228 cmd.args.push("-m64".into());
2229 }
2230 } else if target.arch == "x86_64" || target.arch == "powerpc64" {
2231 cmd.args.push("-m64".into());
2232 }
2233 }
2234
2235 // Target flags
2236 match cmd.family {
2237 ToolFamily::Clang { .. } => {
2238 if !(cmd.has_internal_target_arg
2239 || (target.os == "android"
2240 && android_clang_compiler_uses_target_arg_internally(&cmd.path)))
2241 {
2242 if target.os == "freebsd" {
2243 // FreeBSD only supports C++11 and above when compiling against libc++
2244 // (available from FreeBSD 10 onwards). Under FreeBSD, clang uses libc++ by
2245 // default on FreeBSD 10 and newer unless `--target` is manually passed to
2246 // the compiler, in which case its default behavior differs:
2247 // * If --target=xxx-unknown-freebsdX(.Y) is specified and X is greater than
2248 // or equal to 10, clang++ uses libc++
2249 // * If --target=xxx-unknown-freebsd is specified (without a version),
2250 // clang++ cannot assume libc++ is available and reverts to a default of
2251 // libstdc++ (this behavior was changed in llvm 14).
2252 //
2253 // This breaks C++11 (or greater) builds if targeting FreeBSD with the
2254 // generic xxx-unknown-freebsd target on clang 13 or below *without*
2255 // explicitly specifying that libc++ should be used.
2256 // When cross-compiling, we can't infer from the rust/cargo target name
2257 // which major version of FreeBSD we are targeting, so we need to make sure
2258 // that libc++ is used (unless the user has explicitly specified otherwise).
2259 // There's no compelling reason to use a different approach when compiling
2260 // natively.
2261 if self.cpp && self.cpp_set_stdlib.is_none() {
2262 cmd.push_cc_arg("-stdlib=libc++".into());
2263 }
2264 } else if target.arch == "wasm32" && target.os == "linux" {
2265 for x in &[
2266 "atomics",
2267 "bulk-memory",
2268 "mutable-globals",
2269 "sign-ext",
2270 "exception-handling",
2271 ] {
2272 cmd.push_cc_arg(format!("-m{x}").into());
2273 }
2274 for x in &["wasm-exceptions", "declspec"] {
2275 cmd.push_cc_arg(format!("-f{x}").into());
2276 }
2277 let musl_sysroot = self.wasm_musl_sysroot().unwrap();
2278 cmd.push_cc_arg(
2279 format!("--sysroot={}", Path::new(&musl_sysroot).display()).into(),
2280 );
2281 cmd.push_cc_arg("-pthread".into());
2282 }
2283 // Pass `--target` with the LLVM target to configure Clang for cross-compiling.
2284 //
2285 // This is **required** for cross-compilation, as it's the only flag that
2286 // consistently forces Clang to change the "toolchain" that is responsible for
2287 // parsing target-specific flags:
2288 // https://github.com/rust-lang/cc-rs/issues/1388
2289 // https://github.com/llvm/llvm-project/blob/llvmorg-19.1.7/clang/lib/Driver/Driver.cpp#L1359-L1360
2290 // https://github.com/llvm/llvm-project/blob/llvmorg-19.1.7/clang/lib/Driver/Driver.cpp#L6347-L6532
2291 //
2292 // This can be confusing, because on e.g. host macOS, you can usually get by
2293 // with `-arch` and `-mtargetos=`. But that only works because the _default_
2294 // toolchain is `Darwin`, which enables parsing of darwin-specific options.
2295 //
2296 // NOTE: In the past, we passed the deployment version in here on all Apple
2297 // targets, but versioned targets were found to have poor compatibility with
2298 // older versions of Clang, especially when it comes to configuration files:
2299 // https://github.com/rust-lang/cc-rs/issues/1278
2300 //
2301 // So instead, we pass the deployment target with `-m*-version-min=`, and only
2302 // pass it here on visionOS and Mac Catalyst where that option does not exist:
2303 // https://github.com/rust-lang/cc-rs/issues/1383
2304 let version =
2305 if target.os == "visionos" || target.get_apple_env() == Some(MacCatalyst) {
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 raw_target == "wasm32v1-none" {
2535 // `wasm32v1-none` target only exists in `rustc`, so we need to change the compilation flags:
2536 // https://doc.rust-lang.org/rustc/platform-support/wasm32v1-none.html
2537 cmd.push_cc_arg("-mcpu=mvp".into());
2538 cmd.push_cc_arg("-mmutable-globals".into());
2539 }
2540
2541 if target.os == "solaris" || target.os == "illumos" {
2542 // On Solaris and illumos, multi-threaded C programs must be built with `_REENTRANT`
2543 // defined. This configures headers to define APIs appropriately for multi-threaded
2544 // use. This is documented in threads(7), see also https://illumos.org/man/7/threads.
2545 //
2546 // If C code is compiled without multi-threading support but does use multiple threads,
2547 // incorrect behavior may result. One extreme example is that on some systems the
2548 // global errno may be at the same address as the process' first thread's errno; errno
2549 // clobbering may occur to disastrous effect. Conversely, if _REENTRANT is defined
2550 // while it is not actually needed, system headers may define some APIs suboptimally
2551 // but will not result in incorrect behavior. Other code *should* be reasonable under
2552 // such conditions.
2553 //
2554 // We're typically building C code to eventually link into a Rust program. Many Rust
2555 // programs are multi-threaded in some form. So, set the flag by default.
2556 cmd.args.push("-D_REENTRANT".into());
2557 }
2558
2559 if target.vendor == "apple" {
2560 self.apple_flags(cmd)?;
2561 }
2562
2563 if self.static_flag.unwrap_or(false) {
2564 cmd.args.push("-static".into());
2565 }
2566 if self.shared_flag.unwrap_or(false) {
2567 cmd.args.push("-shared".into());
2568 }
2569
2570 if self.cpp {
2571 match (self.cpp_set_stdlib.as_ref(), cmd.family) {
2572 (None, _) => {}
2573 (Some(stdlib), ToolFamily::Gnu) | (Some(stdlib), ToolFamily::Clang { .. }) => {
2574 cmd.push_cc_arg(format!("-stdlib=lib{stdlib}").into());
2575 }
2576 _ => {
2577 self.cargo_output.print_warning(&format_args!("cpp_set_stdlib is specified, but the {:?} compiler does not support this option, ignored", cmd.family));
2578 }
2579 }
2580 }
2581
2582 Ok(())
2583 }
2584
2585 fn add_inherited_rustflags(
2586 &self,
2587 cmd: &mut Tool,
2588 target: &TargetInfo<'_>,
2589 ) -> Result<(), Error> {
2590 let env_os = match self.getenv("CARGO_ENCODED_RUSTFLAGS") {
2591 Some(env) => env,
2592 // No encoded RUSTFLAGS -> nothing to do
2593 None => return Ok(()),
2594 };
2595
2596 let env = env_os.to_string_lossy();
2597 let codegen_flags = RustcCodegenFlags::parse(&env)?;
2598 codegen_flags.cc_flags(self, cmd, target);
2599 Ok(())
2600 }
2601
2602 fn msvc_macro_assembler(&self) -> Result<Command, Error> {
2603 let target = self.get_target()?;
2604 let tool = match target.arch {
2605 "x86_64" => "ml64.exe",
2606 "arm" => "armasm.exe",
2607 "aarch64" | "arm64ec" => "armasm64.exe",
2608 _ => "ml.exe",
2609 };
2610 let mut cmd = self
2611 .windows_registry_find(&target, tool)
2612 .unwrap_or_else(|| self.cmd(tool));
2613 cmd.arg("-nologo"); // undocumented, yet working with armasm[64]
2614 for directory in self.include_directories.iter() {
2615 cmd.arg("-I").arg(&**directory);
2616 }
2617 if is_arm(&target) {
2618 if self.get_debug() {
2619 cmd.arg("-g");
2620 }
2621
2622 if target.arch == "arm64ec" {
2623 cmd.args(["-machine", "ARM64EC"]);
2624 }
2625
2626 for (key, value) in self.definitions.iter() {
2627 cmd.arg("-PreDefine");
2628 if let Some(ref value) = *value {
2629 if let Ok(i) = value.parse::<i32>() {
2630 cmd.arg(format!("{key} SETA {i}"));
2631 } else if value.starts_with('"') && value.ends_with('"') {
2632 cmd.arg(format!("{key} SETS {value}"));
2633 } else {
2634 cmd.arg(format!("{key} SETS \"{value}\""));
2635 }
2636 } else {
2637 cmd.arg(format!("{} SETL {}", key, "{TRUE}"));
2638 }
2639 }
2640 } else {
2641 if self.get_debug() {
2642 cmd.arg("-Zi");
2643 }
2644
2645 for (key, value) in self.definitions.iter() {
2646 if let Some(ref value) = *value {
2647 cmd.arg(format!("-D{key}={value}"));
2648 } else {
2649 cmd.arg(format!("-D{key}"));
2650 }
2651 }
2652 }
2653
2654 if target.arch == "x86" {
2655 cmd.arg("-safeseh");
2656 }
2657
2658 Ok(cmd)
2659 }
2660
2661 fn assemble(&self, lib_name: &str, dst: &Path, objs: &[Object]) -> Result<(), Error> {
2662 // Delete the destination if it exists as we want to
2663 // create on the first iteration instead of appending.
2664 let _ = fs::remove_file(dst);
2665
2666 // Add objects to the archive in limited-length batches. This helps keep
2667 // the length of the command line within a reasonable length to avoid
2668 // blowing system limits on limiting platforms like Windows.
2669 let objs: Vec<_> = objs
2670 .iter()
2671 .map(|o| o.dst.as_path())
2672 .chain(self.objects.iter().map(std::ops::Deref::deref))
2673 .collect();
2674 for chunk in objs.chunks(100) {
2675 self.assemble_progressive(dst, chunk)?;
2676 }
2677
2678 if self.cuda && self.cuda_file_count() > 0 {
2679 // Link the device-side code and add it to the target library,
2680 // so that non-CUDA linker can link the final binary.
2681
2682 let out_dir = self.get_out_dir()?;
2683 let dlink = out_dir.join(lib_name.to_owned() + "_dlink.o");
2684 let mut nvcc = self.get_compiler().to_command();
2685 nvcc.arg("--device-link").arg("-o").arg(&dlink).arg(dst);
2686 run(&mut nvcc, &self.cargo_output)?;
2687 self.assemble_progressive(dst, &[dlink.as_path()])?;
2688 }
2689
2690 let target = self.get_target()?;
2691 if target.env == "msvc" {
2692 // The Rust compiler will look for libfoo.a and foo.lib, but the
2693 // MSVC linker will also be passed foo.lib, so be sure that both
2694 // exist for now.
2695
2696 let lib_dst = dst.with_file_name(format!("{lib_name}.lib"));
2697 let _ = fs::remove_file(&lib_dst);
2698 match fs::hard_link(dst, &lib_dst).or_else(|_| {
2699 // if hard-link fails, just copy (ignoring the number of bytes written)
2700 fs::copy(dst, &lib_dst).map(|_| ())
2701 }) {
2702 Ok(_) => (),
2703 Err(_) => {
2704 return Err(Error::new(
2705 ErrorKind::IOError,
2706 "Could not copy or create a hard-link to the generated lib file.",
2707 ));
2708 }
2709 };
2710 } else {
2711 // Non-msvc targets (those using `ar`) need a separate step to add
2712 // the symbol table to archives since our construction command of
2713 // `cq` doesn't add it for us.
2714 let mut ar = self.try_get_archiver()?;
2715
2716 // NOTE: We add `s` even if flags were passed using $ARFLAGS/ar_flag, because `s`
2717 // here represents a _mode_, not an arbitrary flag. Further discussion of this choice
2718 // can be seen in https://github.com/rust-lang/cc-rs/pull/763.
2719 run(ar.arg("s").arg(dst), &self.cargo_output)?;
2720 }
2721
2722 Ok(())
2723 }
2724
2725 fn assemble_progressive(&self, dst: &Path, objs: &[&Path]) -> Result<(), Error> {
2726 let target = self.get_target()?;
2727
2728 let (mut cmd, program, any_flags) = self.try_get_archiver_and_flags()?;
2729 if target.env == "msvc" && !program.to_string_lossy().contains("llvm-ar") {
2730 // NOTE: -out: here is an I/O flag, and so must be included even if $ARFLAGS/ar_flag is
2731 // in use. -nologo on the other hand is just a regular flag, and one that we'll skip if
2732 // the caller has explicitly dictated the flags they want. See
2733 // https://github.com/rust-lang/cc-rs/pull/763 for further discussion.
2734 let mut out = OsString::from("-out:");
2735 out.push(dst);
2736 cmd.arg(out);
2737 if !any_flags {
2738 cmd.arg("-nologo");
2739 }
2740 // If the library file already exists, add the library name
2741 // as an argument to let lib.exe know we are appending the objs.
2742 if dst.exists() {
2743 cmd.arg(dst);
2744 }
2745 cmd.args(objs);
2746 run(&mut cmd, &self.cargo_output)?;
2747 } else {
2748 // Set an environment variable to tell the OSX archiver to ensure
2749 // that all dates listed in the archive are zero, improving
2750 // determinism of builds. AFAIK there's not really official
2751 // documentation of this but there's a lot of references to it if
2752 // you search google.
2753 //
2754 // You can reproduce this locally on a mac with:
2755 //
2756 // $ touch foo.c
2757 // $ cc -c foo.c -o foo.o
2758 //
2759 // # Notice that these two checksums are different
2760 // $ ar crus libfoo1.a foo.o && sleep 2 && ar crus libfoo2.a foo.o
2761 // $ md5sum libfoo*.a
2762 //
2763 // # Notice that these two checksums are the same
2764 // $ export ZERO_AR_DATE=1
2765 // $ ar crus libfoo1.a foo.o && sleep 2 && touch foo.o && ar crus libfoo2.a foo.o
2766 // $ md5sum libfoo*.a
2767 //
2768 // In any case if this doesn't end up getting read, it shouldn't
2769 // cause that many issues!
2770 cmd.env("ZERO_AR_DATE", "1");
2771
2772 // NOTE: We add cq here regardless of whether $ARFLAGS/ar_flag have been used because
2773 // it dictates the _mode_ ar runs in, which the setter of $ARFLAGS/ar_flag can't
2774 // dictate. See https://github.com/rust-lang/cc-rs/pull/763 for further discussion.
2775 run(cmd.arg("cq").arg(dst).args(objs), &self.cargo_output)?;
2776 }
2777
2778 Ok(())
2779 }
2780
2781 fn apple_flags(&self, cmd: &mut Tool) -> Result<(), Error> {
2782 let target = self.get_target()?;
2783
2784 // This is a Darwin/Apple-specific flag that works both on GCC and Clang, but it is only
2785 // necessary on GCC since we specify `-target` on Clang.
2786 // https://gcc.gnu.org/onlinedocs/gcc/Darwin-Options.html#:~:text=arch
2787 // https://clang.llvm.org/docs/CommandGuide/clang.html#cmdoption-arch
2788 if cmd.is_like_gnu() {
2789 let arch = map_darwin_target_from_rust_to_compiler_architecture(&target);
2790 cmd.args.push("-arch".into());
2791 cmd.args.push(arch.into());
2792 }
2793
2794 // Pass the deployment target via `-mmacosx-version-min=`, `-miphoneos-version-min=` and
2795 // similar. Also necessary on GCC, as it forces a compilation error if the compiler is not
2796 // configured for Darwin: https://gcc.gnu.org/onlinedocs/gcc/Darwin-Options.html
2797 //
2798 // On visionOS and Mac Catalyst, there is no -m*-version-min= flag:
2799 // https://github.com/llvm/llvm-project/issues/88271
2800 // And the workaround to use `-mtargetos=` cannot be used with the `--target` flag that we
2801 // otherwise specify. So we avoid emitting that, and put the version in `--target` instead.
2802 if cmd.is_like_gnu()
2803 || !(target.os == "visionos" || target.get_apple_env() == Some(MacCatalyst))
2804 {
2805 let min_version = self.apple_deployment_target(&target);
2806 cmd.args
2807 .push(target.apple_version_flag(&min_version).into());
2808 }
2809
2810 // AppleClang sometimes requires sysroot even on macOS
2811 if cmd.is_xctoolchain_clang() || target.os != "macos" {
2812 self.cargo_output.print_metadata(&format_args!(
2813 "Detecting {:?} SDK path for {}",
2814 target.os,
2815 target.apple_sdk_name(),
2816 ));
2817 let sdk_path = self.apple_sdk_root(&target)?;
2818
2819 cmd.args.push("-isysroot".into());
2820 cmd.args.push(OsStr::new(&sdk_path).to_owned());
2821 cmd.env
2822 .push(("SDKROOT".into(), OsStr::new(&sdk_path).to_owned()));
2823
2824 if target.get_apple_env() == Some(MacCatalyst) {
2825 // Mac Catalyst uses the macOS SDK, but to compile against and
2826 // link to iOS-specific frameworks, we should have the support
2827 // library stubs in the include and library search path.
2828 let ios_support = Path::new(&sdk_path).join("System/iOSSupport");
2829
2830 cmd.args.extend([
2831 // Header search path
2832 OsString::from("-isystem"),
2833 ios_support.join("usr/include").into(),
2834 // Framework header search path
2835 OsString::from("-iframework"),
2836 ios_support.join("System/Library/Frameworks").into(),
2837 // Library search path
2838 {
2839 let mut s = OsString::from("-L");
2840 s.push(ios_support.join("usr/lib"));
2841 s
2842 },
2843 // Framework linker search path
2844 {
2845 // Technically, we _could_ avoid emitting `-F`, as
2846 // `-iframework` implies it, but let's keep it in for
2847 // clarity.
2848 let mut s = OsString::from("-F");
2849 s.push(ios_support.join("System/Library/Frameworks"));
2850 s
2851 },
2852 ]);
2853 }
2854 }
2855
2856 Ok(())
2857 }
2858
2859 fn cmd<P: AsRef<OsStr>>(&self, prog: P) -> Command {
2860 let mut cmd = Command::new(prog);
2861 for (a, b) in self.env.iter() {
2862 cmd.env(a, b);
2863 }
2864 cmd
2865 }
2866
2867 fn get_base_compiler(&self) -> Result<Tool, Error> {
2868 let out_dir = self.get_out_dir().ok();
2869 let out_dir = out_dir.as_deref();
2870
2871 if let Some(c) = &self.compiler {
2872 return Ok(Tool::new(
2873 (**c).to_owned(),
2874 &self.build_cache.cached_compiler_family,
2875 &self.cargo_output,
2876 out_dir,
2877 ));
2878 }
2879 let target = self.get_target()?;
2880 let raw_target = self.get_raw_target()?;
2881 let (env, msvc, gnu, traditional, clang) = if self.cpp {
2882 ("CXX", "cl.exe", "g++", "c++", "clang++")
2883 } else {
2884 ("CC", "cl.exe", "gcc", "cc", "clang")
2885 };
2886
2887 // On historical Solaris systems, "cc" may have been Sun Studio, which
2888 // is not flag-compatible with "gcc". This history casts a long shadow,
2889 // and many modern illumos distributions today ship GCC as "gcc" without
2890 // also making it available as "cc".
2891 let default = if cfg!(target_os = "solaris") || cfg!(target_os = "illumos") {
2892 gnu
2893 } else {
2894 traditional
2895 };
2896
2897 let cl_exe = self.windows_registry_find_tool(&target, "cl.exe");
2898
2899 let tool_opt: Option<Tool> = self
2900 .env_tool(env)
2901 .map(|(tool, wrapper, args)| {
2902 // Chop off leading/trailing whitespace to work around
2903 // semi-buggy build scripts which are shared in
2904 // makefiles/configure scripts (where spaces are far more
2905 // lenient)
2906 let mut t = Tool::with_args(
2907 tool,
2908 args.clone(),
2909 &self.build_cache.cached_compiler_family,
2910 &self.cargo_output,
2911 out_dir,
2912 );
2913 if let Some(cc_wrapper) = wrapper {
2914 t.cc_wrapper_path = Some(Path::new(&cc_wrapper).to_owned());
2915 }
2916 for arg in args {
2917 t.cc_wrapper_args.push(arg.into());
2918 }
2919 t
2920 })
2921 .or_else(|| {
2922 if target.os == "emscripten" {
2923 let tool = if self.cpp { "em++" } else { "emcc" };
2924 // Windows uses bat file so we have to be a bit more specific
2925 if cfg!(windows) {
2926 let mut t = Tool::with_family(
2927 PathBuf::from("cmd"),
2928 ToolFamily::Clang { zig_cc: false },
2929 );
2930 t.args.push("/c".into());
2931 t.args.push(format!("{tool}.bat").into());
2932 Some(t)
2933 } else {
2934 Some(Tool::new(
2935 PathBuf::from(tool),
2936 &self.build_cache.cached_compiler_family,
2937 &self.cargo_output,
2938 out_dir,
2939 ))
2940 }
2941 } else {
2942 None
2943 }
2944 })
2945 .or_else(|| cl_exe.clone());
2946
2947 let tool = match tool_opt {
2948 Some(t) => t,
2949 None => {
2950 let compiler = if cfg!(windows) && target.os == "windows" {
2951 if target.env == "msvc" {
2952 msvc.to_string()
2953 } else {
2954 let cc = if target.abi == "llvm" { clang } else { gnu };
2955 format!("{cc}.exe")
2956 }
2957 } else if target.os == "ios"
2958 || target.os == "watchos"
2959 || target.os == "tvos"
2960 || target.os == "visionos"
2961 {
2962 clang.to_string()
2963 } else if target.os == "android" {
2964 autodetect_android_compiler(&raw_target, gnu, clang)
2965 } else if target.os == "cloudabi" {
2966 format!(
2967 "{}-{}-{}-{}",
2968 target.full_arch, target.vendor, target.os, traditional
2969 )
2970 } else if target.arch == "wasm32" || target.arch == "wasm64" {
2971 // Compiling WASM is not currently supported by GCC, so
2972 // let's default to Clang.
2973 clang.to_string()
2974 } else if target.os == "vxworks" {
2975 if self.cpp {
2976 "wr-c++".to_string()
2977 } else {
2978 "wr-cc".to_string()
2979 }
2980 } else if target.arch == "arm" && target.vendor == "kmc" {
2981 format!("arm-kmc-eabi-{gnu}")
2982 } else if target.arch == "aarch64" && target.vendor == "kmc" {
2983 format!("aarch64-kmc-elf-{gnu}")
2984 } else if target.os == "nto" {
2985 // See for details: https://github.com/rust-lang/cc-rs/pull/1319
2986 if self.cpp {
2987 "q++".to_string()
2988 } else {
2989 "qcc".to_string()
2990 }
2991 } else if self.get_is_cross_compile()? {
2992 let prefix = self.prefix_for_target(&raw_target);
2993 match prefix {
2994 Some(prefix) => {
2995 let cc = if target.abi == "llvm" { clang } else { gnu };
2996 format!("{prefix}-{cc}")
2997 }
2998 None => default.to_string(),
2999 }
3000 } else {
3001 default.to_string()
3002 };
3003
3004 let mut t = Tool::new(
3005 PathBuf::from(compiler),
3006 &self.build_cache.cached_compiler_family,
3007 &self.cargo_output,
3008 out_dir,
3009 );
3010 if let Some(cc_wrapper) = self.rustc_wrapper_fallback() {
3011 t.cc_wrapper_path = Some(Path::new(&cc_wrapper).to_owned());
3012 }
3013 t
3014 }
3015 };
3016
3017 let mut tool = if self.cuda {
3018 assert!(
3019 tool.args.is_empty(),
3020 "CUDA compilation currently assumes empty pre-existing args"
3021 );
3022 let nvcc = match self.getenv_with_target_prefixes("NVCC") {
3023 Err(_) => PathBuf::from("nvcc"),
3024 Ok(nvcc) => PathBuf::from(&*nvcc),
3025 };
3026 let mut nvcc_tool = Tool::with_features(
3027 nvcc,
3028 vec![],
3029 self.cuda,
3030 &self.build_cache.cached_compiler_family,
3031 &self.cargo_output,
3032 out_dir,
3033 );
3034 if self.ccbin {
3035 nvcc_tool
3036 .args
3037 .push(format!("-ccbin={}", tool.path.display()).into());
3038 }
3039 if let Some(cc_wrapper) = self.rustc_wrapper_fallback() {
3040 nvcc_tool.cc_wrapper_path = Some(Path::new(&cc_wrapper).to_owned());
3041 }
3042 nvcc_tool.family = tool.family;
3043 nvcc_tool
3044 } else {
3045 tool
3046 };
3047
3048 // New "standalone" C/C++ cross-compiler executables from recent Android NDK
3049 // are just shell scripts that call main clang binary (from Android NDK) with
3050 // proper `--target` argument.
3051 //
3052 // For example, armv7a-linux-androideabi16-clang passes
3053 // `--target=armv7a-linux-androideabi16` to clang.
3054 //
3055 // As the shell script calls the main clang binary, the command line limit length
3056 // on Windows is restricted to around 8k characters instead of around 32k characters.
3057 // To remove this limit, we call the main clang binary directly and construct the
3058 // `--target=` ourselves.
3059 if cfg!(windows) && android_clang_compiler_uses_target_arg_internally(&tool.path) {
3060 if let Some(path) = tool.path.file_name() {
3061 let file_name = path.to_str().unwrap().to_owned();
3062 let (target, clang) = file_name.split_at(file_name.rfind('-').unwrap());
3063
3064 tool.has_internal_target_arg = true;
3065 tool.path.set_file_name(clang.trim_start_matches('-'));
3066 tool.path.set_extension("exe");
3067 tool.args.push(format!("--target={target}").into());
3068
3069 // Additionally, shell scripts for target i686-linux-android versions 16 to 24
3070 // pass the `mstackrealign` option so we do that here as well.
3071 if target.contains("i686-linux-android") {
3072 let (_, version) = target.split_at(target.rfind('d').unwrap() + 1);
3073 if let Ok(version) = version.parse::<u32>() {
3074 if version > 15 && version < 25 {
3075 tool.args.push("-mstackrealign".into());
3076 }
3077 }
3078 }
3079 };
3080 }
3081
3082 // If we found `cl.exe` in our environment, the tool we're returning is
3083 // an MSVC-like tool, *and* no env vars were set then set env vars for
3084 // the tool that we're returning.
3085 //
3086 // Env vars are needed for things like `link.exe` being put into PATH as
3087 // well as header include paths sometimes. These paths are automatically
3088 // included by default but if the `CC` or `CXX` env vars are set these
3089 // won't be used. This'll ensure that when the env vars are used to
3090 // configure for invocations like `clang-cl` we still get a "works out
3091 // of the box" experience.
3092 if let Some(cl_exe) = cl_exe {
3093 if tool.family == (ToolFamily::Msvc { clang_cl: true })
3094 && tool.env.is_empty()
3095 && target.env == "msvc"
3096 {
3097 for (k, v) in cl_exe.env.iter() {
3098 tool.env.push((k.to_owned(), v.to_owned()));
3099 }
3100 }
3101 }
3102
3103 if target.env == "msvc" && tool.family == ToolFamily::Gnu {
3104 self.cargo_output
3105 .print_warning(&"GNU compiler is not supported for this target");
3106 }
3107
3108 Ok(tool)
3109 }
3110
3111 /// Returns a fallback `cc_compiler_wrapper` by introspecting `RUSTC_WRAPPER`
3112 fn rustc_wrapper_fallback(&self) -> Option<Arc<OsStr>> {
3113 // No explicit CC wrapper was detected, but check if RUSTC_WRAPPER
3114 // is defined and is a build accelerator that is compatible with
3115 // C/C++ compilers (e.g. sccache)
3116 const VALID_WRAPPERS: &[&str] = &["sccache", "cachepot", "buildcache"];
3117
3118 let rustc_wrapper = self.getenv("RUSTC_WRAPPER")?;
3119 let wrapper_path = Path::new(&rustc_wrapper);
3120 let wrapper_stem = wrapper_path.file_stem()?;
3121
3122 if VALID_WRAPPERS.contains(&wrapper_stem.to_str()?) {
3123 Some(rustc_wrapper)
3124 } else {
3125 None
3126 }
3127 }
3128
3129 /// Returns compiler path, optional modifier name from whitelist, and arguments vec
3130 fn env_tool(&self, name: &str) -> Option<(PathBuf, Option<Arc<OsStr>>, Vec<String>)> {
3131 let tool = self.getenv_with_target_prefixes(name).ok()?;
3132 let tool = tool.to_string_lossy();
3133 let tool = tool.trim();
3134
3135 if tool.is_empty() {
3136 return None;
3137 }
3138
3139 // If this is an exact path on the filesystem we don't want to do any
3140 // interpretation at all, just pass it on through. This'll hopefully get
3141 // us to support spaces-in-paths.
3142 if Path::new(tool).exists() {
3143 return Some((
3144 PathBuf::from(tool),
3145 self.rustc_wrapper_fallback(),
3146 Vec::new(),
3147 ));
3148 }
3149
3150 // Ok now we want to handle a couple of scenarios. We'll assume from
3151 // here on out that spaces are splitting separate arguments. Two major
3152 // features we want to support are:
3153 //
3154 // CC='sccache cc'
3155 //
3156 // aka using `sccache` or any other wrapper/caching-like-thing for
3157 // compilations. We want to know what the actual compiler is still,
3158 // though, because our `Tool` API support introspection of it to see
3159 // what compiler is in use.
3160 //
3161 // additionally we want to support
3162 //
3163 // CC='cc -flag'
3164 //
3165 // where the CC env var is used to also pass default flags to the C
3166 // compiler.
3167 //
3168 // It's true that everything here is a bit of a pain, but apparently if
3169 // you're not literally make or bash then you get a lot of bug reports.
3170 let mut known_wrappers = vec![
3171 "ccache",
3172 "distcc",
3173 "sccache",
3174 "icecc",
3175 "cachepot",
3176 "buildcache",
3177 ];
3178 let custom_wrapper = self.getenv("CC_KNOWN_WRAPPER_CUSTOM");
3179 if custom_wrapper.is_some() {
3180 known_wrappers.push(custom_wrapper.as_deref().unwrap().to_str().unwrap());
3181 }
3182
3183 let mut parts = tool.split_whitespace();
3184 let maybe_wrapper = parts.next()?;
3185
3186 let file_stem = Path::new(maybe_wrapper).file_stem()?.to_str()?;
3187 if known_wrappers.contains(&file_stem) {
3188 if let Some(compiler) = parts.next() {
3189 return Some((
3190 compiler.into(),
3191 Some(Arc::<OsStr>::from(OsStr::new(&maybe_wrapper))),
3192 parts.map(|s| s.to_string()).collect(),
3193 ));
3194 }
3195 }
3196
3197 Some((
3198 maybe_wrapper.into(),
3199 self.rustc_wrapper_fallback(),
3200 parts.map(|s| s.to_string()).collect(),
3201 ))
3202 }
3203
3204 /// Returns the C++ standard library:
3205 /// 1. If [`cpp_link_stdlib`](cc::Build::cpp_link_stdlib) is set, uses its value.
3206 /// 2. Else if the `CXXSTDLIB` environment variable is set, uses its value.
3207 /// 3. Else the default is `c++` for OS X and BSDs, `c++_shared` for Android,
3208 /// `None` for MSVC and `stdc++` for anything else.
3209 fn get_cpp_link_stdlib(&self) -> Result<Option<Cow<'_, Path>>, Error> {
3210 match &self.cpp_link_stdlib {
3211 Some(s) => Ok(s.as_deref().map(Path::new).map(Cow::Borrowed)),
3212 None => {
3213 if let Ok(stdlib) = self.getenv_with_target_prefixes("CXXSTDLIB") {
3214 if stdlib.is_empty() {
3215 Ok(None)
3216 } else {
3217 Ok(Some(Cow::Owned(Path::new(&stdlib).to_owned())))
3218 }
3219 } else {
3220 let target = self.get_target()?;
3221 if target.env == "msvc" {
3222 Ok(None)
3223 } else if target.vendor == "apple"
3224 || target.os == "freebsd"
3225 || target.os == "openbsd"
3226 || target.os == "aix"
3227 || (target.os == "linux" && target.env == "ohos")
3228 || target.os == "wasi"
3229 {
3230 Ok(Some(Cow::Borrowed(Path::new("c++"))))
3231 } else if target.os == "android" {
3232 Ok(Some(Cow::Borrowed(Path::new("c++_shared"))))
3233 } else {
3234 Ok(Some(Cow::Borrowed(Path::new("stdc++"))))
3235 }
3236 }
3237 }
3238 }
3239 }
3240
3241 /// Get the archiver (ar) that's in use for this configuration.
3242 ///
3243 /// You can use [`Command::get_program`] to get just the path to the command.
3244 ///
3245 /// This method will take into account all configuration such as debug
3246 /// information, optimization level, include directories, defines, etc.
3247 /// Additionally, the compiler binary in use follows the standard
3248 /// conventions for this path, e.g. looking at the explicitly set compiler,
3249 /// environment variables (a number of which are inspected here), and then
3250 /// falling back to the default configuration.
3251 ///
3252 /// # Panics
3253 ///
3254 /// Panics if an error occurred while determining the architecture.
3255 pub fn get_archiver(&self) -> Command {
3256 match self.try_get_archiver() {
3257 Ok(tool) => tool,
3258 Err(e) => fail(&e.message),
3259 }
3260 }
3261
3262 /// Get the archiver that's in use for this configuration.
3263 ///
3264 /// This will return a result instead of panicking;
3265 /// see [`Self::get_archiver`] for the complete description.
3266 pub fn try_get_archiver(&self) -> Result<Command, Error> {
3267 Ok(self.try_get_archiver_and_flags()?.0)
3268 }
3269
3270 fn try_get_archiver_and_flags(&self) -> Result<(Command, PathBuf, bool), Error> {
3271 let (mut cmd, name) = self.get_base_archiver()?;
3272 let mut any_flags = false;
3273 if let Some(flags) = self.envflags("ARFLAGS")? {
3274 any_flags = true;
3275 cmd.args(flags);
3276 }
3277 for flag in &self.ar_flags {
3278 any_flags = true;
3279 cmd.arg(&**flag);
3280 }
3281 Ok((cmd, name, any_flags))
3282 }
3283
3284 fn get_base_archiver(&self) -> Result<(Command, PathBuf), Error> {
3285 if let Some(ref a) = self.archiver {
3286 let archiver = &**a;
3287 return Ok((self.cmd(archiver), archiver.into()));
3288 }
3289
3290 self.get_base_archiver_variant("AR", "ar")
3291 }
3292
3293 /// Get the ranlib that's in use for this configuration.
3294 ///
3295 /// You can use [`Command::get_program`] to get just the path to the command.
3296 ///
3297 /// This method will take into account all configuration such as debug
3298 /// information, optimization level, include directories, defines, etc.
3299 /// Additionally, the compiler binary in use follows the standard
3300 /// conventions for this path, e.g. looking at the explicitly set compiler,
3301 /// environment variables (a number of which are inspected here), and then
3302 /// falling back to the default configuration.
3303 ///
3304 /// # Panics
3305 ///
3306 /// Panics if an error occurred while determining the architecture.
3307 pub fn get_ranlib(&self) -> Command {
3308 match self.try_get_ranlib() {
3309 Ok(tool) => tool,
3310 Err(e) => fail(&e.message),
3311 }
3312 }
3313
3314 /// Get the ranlib that's in use for this configuration.
3315 ///
3316 /// This will return a result instead of panicking;
3317 /// see [`Self::get_ranlib`] for the complete description.
3318 pub fn try_get_ranlib(&self) -> Result<Command, Error> {
3319 let mut cmd = self.get_base_ranlib()?;
3320 if let Some(flags) = self.envflags("RANLIBFLAGS")? {
3321 cmd.args(flags);
3322 }
3323 Ok(cmd)
3324 }
3325
3326 fn get_base_ranlib(&self) -> Result<Command, Error> {
3327 if let Some(ref r) = self.ranlib {
3328 return Ok(self.cmd(&**r));
3329 }
3330
3331 Ok(self.get_base_archiver_variant("RANLIB", "ranlib")?.0)
3332 }
3333
3334 fn get_base_archiver_variant(
3335 &self,
3336 env: &str,
3337 tool: &str,
3338 ) -> Result<(Command, PathBuf), Error> {
3339 let target = self.get_target()?;
3340 let mut name = PathBuf::new();
3341 let tool_opt: Option<Command> = self
3342 .env_tool(env)
3343 .map(|(tool, _wrapper, args)| {
3344 name.clone_from(&tool);
3345 let mut cmd = self.cmd(tool);
3346 cmd.args(args);
3347 cmd
3348 })
3349 .or_else(|| {
3350 if target.os == "emscripten" {
3351 // Windows use bat files so we have to be a bit more specific
3352 if cfg!(windows) {
3353 let mut cmd = self.cmd("cmd");
3354 name = format!("em{tool}.bat").into();
3355 cmd.arg("/c").arg(&name);
3356 Some(cmd)
3357 } else {
3358 name = format!("em{tool}").into();
3359 Some(self.cmd(&name))
3360 }
3361 } else if target.arch == "wasm32" || target.arch == "wasm64" {
3362 // Formally speaking one should be able to use this approach,
3363 // parsing -print-search-dirs output, to cover all clang targets,
3364 // including Android SDKs and other cross-compilation scenarios...
3365 // And even extend it to gcc targets by searching for "ar" instead
3366 // of "llvm-ar"...
3367 let compiler = self.get_base_compiler().ok()?;
3368 if compiler.is_like_clang() {
3369 name = format!("llvm-{tool}").into();
3370 self.search_programs(
3371 &mut self.cmd(&compiler.path),
3372 &name,
3373 &self.cargo_output,
3374 )
3375 .map(|name| self.cmd(name))
3376 } else {
3377 None
3378 }
3379 } else {
3380 None
3381 }
3382 });
3383
3384 let tool = match tool_opt {
3385 Some(t) => t,
3386 None => {
3387 if target.os == "android" {
3388 name = format!("llvm-{tool}").into();
3389 match Command::new(&name).arg("--version").status() {
3390 Ok(status) if status.success() => (),
3391 _ => {
3392 // FIXME: Use parsed target.
3393 let raw_target = self.get_raw_target()?;
3394 name = format!("{}-{}", raw_target.replace("armv7", "arm"), tool).into()
3395 }
3396 }
3397 self.cmd(&name)
3398 } else if target.env == "msvc" {
3399 // NOTE: There isn't really a ranlib on msvc, so arguably we should return
3400 // `None` somehow here. But in general, callers will already have to be aware
3401 // of not running ranlib on Windows anyway, so it feels okay to return lib.exe
3402 // here.
3403
3404 let compiler = self.get_base_compiler()?;
3405 let mut lib = String::new();
3406 if compiler.family == (ToolFamily::Msvc { clang_cl: true }) {
3407 // See if there is 'llvm-lib' next to 'clang-cl'
3408 // Another possibility could be to see if there is 'clang'
3409 // next to 'clang-cl' and use 'search_programs()' to locate
3410 // 'llvm-lib'. This is because 'clang-cl' doesn't support
3411 // the -print-search-dirs option.
3412 if let Some(mut cmd) = self.which(&compiler.path, None) {
3413 cmd.pop();
3414 cmd.push("llvm-lib.exe");
3415 if let Some(llvm_lib) = self.which(&cmd, None) {
3416 llvm_lib.to_str().unwrap().clone_into(&mut lib);
3417 }
3418 }
3419 }
3420
3421 if lib.is_empty() {
3422 name = PathBuf::from("lib.exe");
3423 let mut cmd = match self.windows_registry_find(&target, "lib.exe") {
3424 Some(t) => t,
3425 None => self.cmd("lib.exe"),
3426 };
3427 if target.full_arch == "arm64ec" {
3428 cmd.arg("/machine:arm64ec");
3429 }
3430 cmd
3431 } else {
3432 name = lib.into();
3433 self.cmd(&name)
3434 }
3435 } else if target.os == "illumos" {
3436 // The default 'ar' on illumos uses a non-standard flags,
3437 // but the OS comes bundled with a GNU-compatible variant.
3438 //
3439 // Use the GNU-variant to match other Unix systems.
3440 name = format!("g{tool}").into();
3441 self.cmd(&name)
3442 } else if target.os == "vxworks" {
3443 name = format!("wr-{tool}").into();
3444 self.cmd(&name)
3445 } else if target.os == "nto" {
3446 // Ref: https://www.qnx.com/developers/docs/8.0/com.qnx.doc.neutrino.utilities/topic/a/ar.html
3447 name = match target.full_arch {
3448 "i586" => format!("ntox86-{tool}").into(),
3449 "x86" | "aarch64" | "x86_64" => {
3450 format!("nto{}-{}", target.arch, tool).into()
3451 }
3452 _ => {
3453 return Err(Error::new(
3454 ErrorKind::InvalidTarget,
3455 format!("Unknown architecture for Neutrino QNX: {}", target.arch),
3456 ))
3457 }
3458 };
3459 self.cmd(&name)
3460 } else if self.get_is_cross_compile()? {
3461 match self.prefix_for_target(&self.get_raw_target()?) {
3462 Some(prefix) => {
3463 // GCC uses $target-gcc-ar, whereas binutils uses $target-ar -- try both.
3464 // Prefer -ar if it exists, as builds of `-gcc-ar` have been observed to be
3465 // outright broken (such as when targeting freebsd with `--disable-lto`
3466 // toolchain where the archiver attempts to load the LTO plugin anyway but
3467 // fails to find one).
3468 //
3469 // The same applies to ranlib.
3470 let chosen = ["", "-gcc"]
3471 .iter()
3472 .filter_map(|infix| {
3473 let target_p = format!("{prefix}{infix}-{tool}");
3474 let status = Command::new(&target_p)
3475 .arg("--version")
3476 .stdin(Stdio::null())
3477 .stdout(Stdio::null())
3478 .stderr(Stdio::null())
3479 .status()
3480 .ok()?;
3481 status.success().then_some(target_p)
3482 })
3483 .next()
3484 .unwrap_or_else(|| tool.to_string());
3485 name = chosen.into();
3486 self.cmd(&name)
3487 }
3488 None => {
3489 name = tool.into();
3490 self.cmd(&name)
3491 }
3492 }
3493 } else {
3494 name = tool.into();
3495 self.cmd(&name)
3496 }
3497 }
3498 };
3499
3500 Ok((tool, name))
3501 }
3502
3503 // FIXME: Use parsed target instead of raw target.
3504 fn prefix_for_target(&self, target: &str) -> Option<Cow<'static, str>> {
3505 // CROSS_COMPILE is of the form: "arm-linux-gnueabi-"
3506 self.getenv("CROSS_COMPILE")
3507 .as_deref()
3508 .map(|s| s.to_string_lossy().trim_end_matches('-').to_owned())
3509 .map(Cow::Owned)
3510 .or_else(|| {
3511 // Put aside RUSTC_LINKER's prefix to be used as second choice, after CROSS_COMPILE
3512 self.getenv("RUSTC_LINKER").and_then(|var| {
3513 var.to_string_lossy()
3514 .strip_suffix("-gcc")
3515 .map(str::to_string)
3516 .map(Cow::Owned)
3517 })
3518 })
3519 .or_else(|| {
3520 match target {
3521 // Note: there is no `aarch64-pc-windows-gnu` target, only `-gnullvm`
3522 "aarch64-pc-windows-gnullvm" => Some("aarch64-w64-mingw32"),
3523 "aarch64-uwp-windows-gnu" => Some("aarch64-w64-mingw32"),
3524 "aarch64-unknown-linux-gnu" => Some("aarch64-linux-gnu"),
3525 "aarch64-unknown-linux-musl" => Some("aarch64-linux-musl"),
3526 "aarch64-unknown-netbsd" => Some("aarch64--netbsd"),
3527 "arm-unknown-linux-gnueabi" => Some("arm-linux-gnueabi"),
3528 "armv4t-unknown-linux-gnueabi" => Some("arm-linux-gnueabi"),
3529 "armv5te-unknown-linux-gnueabi" => Some("arm-linux-gnueabi"),
3530 "armv5te-unknown-linux-musleabi" => Some("arm-linux-gnueabi"),
3531 "arm-unknown-linux-gnueabihf" => Some("arm-linux-gnueabihf"),
3532 "arm-unknown-linux-musleabi" => Some("arm-linux-musleabi"),
3533 "arm-unknown-linux-musleabihf" => Some("arm-linux-musleabihf"),
3534 "arm-unknown-netbsd-eabi" => Some("arm--netbsdelf-eabi"),
3535 "armv6-unknown-netbsd-eabihf" => Some("armv6--netbsdelf-eabihf"),
3536 "armv7-unknown-linux-gnueabi" => Some("arm-linux-gnueabi"),
3537 "armv7-unknown-linux-gnueabihf" => Some("arm-linux-gnueabihf"),
3538 "armv7-unknown-linux-musleabihf" => Some("arm-linux-musleabihf"),
3539 "armv7neon-unknown-linux-gnueabihf" => Some("arm-linux-gnueabihf"),
3540 "armv7neon-unknown-linux-musleabihf" => Some("arm-linux-musleabihf"),
3541 "thumbv7-unknown-linux-gnueabihf" => Some("arm-linux-gnueabihf"),
3542 "thumbv7-unknown-linux-musleabihf" => Some("arm-linux-musleabihf"),
3543 "thumbv7neon-unknown-linux-gnueabihf" => Some("arm-linux-gnueabihf"),
3544 "thumbv7neon-unknown-linux-musleabihf" => Some("arm-linux-musleabihf"),
3545 "armv7-unknown-netbsd-eabihf" => Some("armv7--netbsdelf-eabihf"),
3546 "hexagon-unknown-linux-musl" => Some("hexagon-linux-musl"),
3547 "i586-unknown-linux-musl" => Some("musl"),
3548 "i686-pc-windows-gnu" => Some("i686-w64-mingw32"),
3549 "i686-pc-windows-gnullvm" => Some("i686-w64-mingw32"),
3550 "i686-uwp-windows-gnu" => Some("i686-w64-mingw32"),
3551 "i686-unknown-linux-gnu" => self.find_working_gnu_prefix(&[
3552 "i686-linux-gnu",
3553 "x86_64-linux-gnu", // transparently support gcc-multilib
3554 ]), // explicit None if not found, so caller knows to fall back
3555 "i686-unknown-linux-musl" => Some("musl"),
3556 "i686-unknown-netbsd" => Some("i486--netbsdelf"),
3557 "loongarch64-unknown-linux-gnu" => Some("loongarch64-linux-gnu"),
3558 "m68k-unknown-linux-gnu" => Some("m68k-linux-gnu"),
3559 "mips-unknown-linux-gnu" => Some("mips-linux-gnu"),
3560 "mips-unknown-linux-musl" => Some("mips-linux-musl"),
3561 "mipsel-unknown-linux-gnu" => Some("mipsel-linux-gnu"),
3562 "mipsel-unknown-linux-musl" => Some("mipsel-linux-musl"),
3563 "mips64-unknown-linux-gnuabi64" => Some("mips64-linux-gnuabi64"),
3564 "mips64el-unknown-linux-gnuabi64" => Some("mips64el-linux-gnuabi64"),
3565 "mipsisa32r6-unknown-linux-gnu" => Some("mipsisa32r6-linux-gnu"),
3566 "mipsisa32r6el-unknown-linux-gnu" => Some("mipsisa32r6el-linux-gnu"),
3567 "mipsisa64r6-unknown-linux-gnuabi64" => Some("mipsisa64r6-linux-gnuabi64"),
3568 "mipsisa64r6el-unknown-linux-gnuabi64" => Some("mipsisa64r6el-linux-gnuabi64"),
3569 "powerpc-unknown-linux-gnu" => Some("powerpc-linux-gnu"),
3570 "powerpc-unknown-linux-gnuspe" => Some("powerpc-linux-gnuspe"),
3571 "powerpc-unknown-netbsd" => Some("powerpc--netbsd"),
3572 "powerpc64-unknown-linux-gnu" => Some("powerpc64-linux-gnu"),
3573 "powerpc64le-unknown-linux-gnu" => Some("powerpc64le-linux-gnu"),
3574 "riscv32i-unknown-none-elf" => self.find_working_gnu_prefix(&[
3575 "riscv32-unknown-elf",
3576 "riscv64-unknown-elf",
3577 "riscv-none-embed",
3578 ]),
3579 "riscv32imac-esp-espidf" => Some("riscv32-esp-elf"),
3580 "riscv32imac-unknown-none-elf" => self.find_working_gnu_prefix(&[
3581 "riscv32-unknown-elf",
3582 "riscv64-unknown-elf",
3583 "riscv-none-embed",
3584 ]),
3585 "riscv32imac-unknown-xous-elf" => self.find_working_gnu_prefix(&[
3586 "riscv32-unknown-elf",
3587 "riscv64-unknown-elf",
3588 "riscv-none-embed",
3589 ]),
3590 "riscv32imc-esp-espidf" => Some("riscv32-esp-elf"),
3591 "riscv32imc-unknown-none-elf" => self.find_working_gnu_prefix(&[
3592 "riscv32-unknown-elf",
3593 "riscv64-unknown-elf",
3594 "riscv-none-embed",
3595 ]),
3596 "riscv64gc-unknown-none-elf" => self.find_working_gnu_prefix(&[
3597 "riscv64-unknown-elf",
3598 "riscv32-unknown-elf",
3599 "riscv-none-embed",
3600 ]),
3601 "riscv64imac-unknown-none-elf" => self.find_working_gnu_prefix(&[
3602 "riscv64-unknown-elf",
3603 "riscv32-unknown-elf",
3604 "riscv-none-embed",
3605 ]),
3606 "riscv64gc-unknown-linux-gnu" => Some("riscv64-linux-gnu"),
3607 "riscv32gc-unknown-linux-gnu" => Some("riscv32-linux-gnu"),
3608 "riscv64gc-unknown-linux-musl" => Some("riscv64-linux-musl"),
3609 "riscv32gc-unknown-linux-musl" => Some("riscv32-linux-musl"),
3610 "riscv64gc-unknown-netbsd" => Some("riscv64--netbsd"),
3611 "s390x-unknown-linux-gnu" => Some("s390x-linux-gnu"),
3612 "sparc-unknown-linux-gnu" => Some("sparc-linux-gnu"),
3613 "sparc64-unknown-linux-gnu" => Some("sparc64-linux-gnu"),
3614 "sparc64-unknown-netbsd" => Some("sparc64--netbsd"),
3615 "sparcv9-sun-solaris" => Some("sparcv9-sun-solaris"),
3616 "armv7a-none-eabi" => Some("arm-none-eabi"),
3617 "armv7a-none-eabihf" => Some("arm-none-eabi"),
3618 "armebv7r-none-eabi" => Some("arm-none-eabi"),
3619 "armebv7r-none-eabihf" => Some("arm-none-eabi"),
3620 "armv7r-none-eabi" => Some("arm-none-eabi"),
3621 "armv7r-none-eabihf" => Some("arm-none-eabi"),
3622 "armv8r-none-eabihf" => Some("arm-none-eabi"),
3623 "thumbv6m-none-eabi" => Some("arm-none-eabi"),
3624 "thumbv7em-none-eabi" => Some("arm-none-eabi"),
3625 "thumbv7em-none-eabihf" => Some("arm-none-eabi"),
3626 "thumbv7m-none-eabi" => Some("arm-none-eabi"),
3627 "thumbv8m.base-none-eabi" => Some("arm-none-eabi"),
3628 "thumbv8m.main-none-eabi" => Some("arm-none-eabi"),
3629 "thumbv8m.main-none-eabihf" => Some("arm-none-eabi"),
3630 "x86_64-pc-windows-gnu" => Some("x86_64-w64-mingw32"),
3631 "x86_64-pc-windows-gnullvm" => Some("x86_64-w64-mingw32"),
3632 "x86_64-uwp-windows-gnu" => Some("x86_64-w64-mingw32"),
3633 "x86_64-rumprun-netbsd" => Some("x86_64-rumprun-netbsd"),
3634 "x86_64-unknown-linux-gnu" => self.find_working_gnu_prefix(&[
3635 "x86_64-linux-gnu", // rustfmt wrap
3636 ]), // explicit None if not found, so caller knows to fall back
3637 "x86_64-unknown-linux-musl" => {
3638 self.find_working_gnu_prefix(&["x86_64-linux-musl", "musl"])
3639 }
3640 "x86_64-unknown-netbsd" => Some("x86_64--netbsd"),
3641 _ => None,
3642 }
3643 .map(Cow::Borrowed)
3644 })
3645 }
3646
3647 /// Some platforms have multiple, compatible, canonical prefixes. Look through
3648 /// each possible prefix for a compiler that exists and return it. The prefixes
3649 /// should be ordered from most-likely to least-likely.
3650 fn find_working_gnu_prefix(&self, prefixes: &[&'static str]) -> Option<&'static str> {
3651 let suffix = if self.cpp { "-g++" } else { "-gcc" };
3652 let extension = std::env::consts::EXE_SUFFIX;
3653
3654 // Loop through PATH entries searching for each toolchain. This ensures that we
3655 // are more likely to discover the toolchain early on, because chances are good
3656 // that the desired toolchain is in one of the higher-priority paths.
3657 self.getenv("PATH")
3658 .as_ref()
3659 .and_then(|path_entries| {
3660 env::split_paths(path_entries).find_map(|path_entry| {
3661 for prefix in prefixes {
3662 let target_compiler = format!("{prefix}{suffix}{extension}");
3663 if path_entry.join(&target_compiler).exists() {
3664 return Some(prefix);
3665 }
3666 }
3667 None
3668 })
3669 })
3670 .copied()
3671 // If no toolchain was found, provide the first toolchain that was passed in.
3672 // This toolchain has been shown not to exist, however it will appear in the
3673 // error that is shown to the user which should make it easier to search for
3674 // where it should be obtained.
3675 .or_else(|| prefixes.first().copied())
3676 }
3677
3678 fn get_target(&self) -> Result<TargetInfo<'_>, Error> {
3679 match &self.target {
3680 Some(t) if Some(&**t) != self.getenv_unwrap_str("TARGET").ok().as_deref() => {
3681 TargetInfo::from_rustc_target(t)
3682 }
3683 // Fetch target information from environment if not set, or if the
3684 // target was the same as the TARGET environment variable, in
3685 // case the user did `build.target(&env::var("TARGET").unwrap())`.
3686 _ => self
3687 .build_cache
3688 .target_info_parser
3689 .parse_from_cargo_environment_variables(),
3690 }
3691 }
3692
3693 fn get_raw_target(&self) -> Result<Cow<'_, str>, Error> {
3694 match &self.target {
3695 Some(t) => Ok(Cow::Borrowed(t)),
3696 None => self.getenv_unwrap_str("TARGET").map(Cow::Owned),
3697 }
3698 }
3699
3700 fn get_is_cross_compile(&self) -> Result<bool, Error> {
3701 let target = self.get_raw_target()?;
3702 let host: Cow<'_, str> = match &self.host {
3703 Some(h) => Cow::Borrowed(h),
3704 None => Cow::Owned(self.getenv_unwrap_str("HOST")?),
3705 };
3706 Ok(host != target)
3707 }
3708
3709 fn get_opt_level(&self) -> Result<Cow<'_, str>, Error> {
3710 match &self.opt_level {
3711 Some(ol) => Ok(Cow::Borrowed(ol)),
3712 None => self.getenv_unwrap_str("OPT_LEVEL").map(Cow::Owned),
3713 }
3714 }
3715
3716 fn get_debug(&self) -> bool {
3717 self.debug.unwrap_or_else(|| self.getenv_boolean("DEBUG"))
3718 }
3719
3720 fn get_shell_escaped_flags(&self) -> bool {
3721 self.shell_escaped_flags
3722 .unwrap_or_else(|| self.getenv_boolean("CC_SHELL_ESCAPED_FLAGS"))
3723 }
3724
3725 fn get_dwarf_version(&self) -> Option<u32> {
3726 // Tentatively matches the DWARF version defaults as of rustc 1.62.
3727 let target = self.get_target().ok()?;
3728 if matches!(
3729 target.os,
3730 "android" | "dragonfly" | "freebsd" | "netbsd" | "openbsd"
3731 ) || target.vendor == "apple"
3732 || (target.os == "windows" && target.env == "gnu")
3733 {
3734 Some(2)
3735 } else if target.os == "linux" {
3736 Some(4)
3737 } else {
3738 None
3739 }
3740 }
3741
3742 fn get_force_frame_pointer(&self) -> bool {
3743 self.force_frame_pointer.unwrap_or_else(|| self.get_debug())
3744 }
3745
3746 fn get_out_dir(&self) -> Result<Cow<'_, Path>, Error> {
3747 match &self.out_dir {
3748 Some(p) => Ok(Cow::Borrowed(&**p)),
3749 None => self
3750 .getenv("OUT_DIR")
3751 .as_deref()
3752 .map(PathBuf::from)
3753 .map(Cow::Owned)
3754 .ok_or_else(|| {
3755 Error::new(
3756 ErrorKind::EnvVarNotFound,
3757 "Environment variable OUT_DIR not defined.",
3758 )
3759 }),
3760 }
3761 }
3762
3763 #[allow(clippy::disallowed_methods)]
3764 fn getenv(&self, v: &str) -> Option<Arc<OsStr>> {
3765 // Returns true for environment variables cargo sets for build scripts:
3766 // https://doc.rust-lang.org/cargo/reference/environment-variables.html#environment-variables-cargo-sets-for-build-scripts
3767 //
3768 // This handles more of the vars than we actually use (it tries to check
3769 // complete-ish set), just to avoid needing maintenance if/when new
3770 // calls to `getenv`/`getenv_unwrap` are added.
3771 fn provided_by_cargo(envvar: &str) -> bool {
3772 match envvar {
3773 v if v.starts_with("CARGO") || v.starts_with("RUSTC") => true,
3774 "HOST" | "TARGET" | "RUSTDOC" | "OUT_DIR" | "OPT_LEVEL" | "DEBUG" | "PROFILE"
3775 | "NUM_JOBS" | "RUSTFLAGS" => true,
3776 _ => false,
3777 }
3778 }
3779 if let Some(val) = self.build_cache.env_cache.read().unwrap().get(v).cloned() {
3780 return val;
3781 }
3782 // Excluding `PATH` prevents spurious rebuilds on Windows, see
3783 // <https://github.com/rust-lang/cc-rs/pull/1215> for details.
3784 if self.emit_rerun_if_env_changed && !provided_by_cargo(v) && v != "PATH" {
3785 self.cargo_output
3786 .print_metadata(&format_args!("cargo:rerun-if-env-changed={v}"));
3787 }
3788 let r = env::var_os(v).map(Arc::from);
3789 self.cargo_output.print_metadata(&format_args!(
3790 "{} = {}",
3791 v,
3792 OptionOsStrDisplay(r.as_deref())
3793 ));
3794 self.build_cache
3795 .env_cache
3796 .write()
3797 .unwrap()
3798 .insert(v.into(), r.clone());
3799 r
3800 }
3801
3802 /// get boolean flag that is either true or false
3803 fn getenv_boolean(&self, v: &str) -> bool {
3804 match self.getenv(v) {
3805 Some(s) => &*s != "0" && &*s != "false" && !s.is_empty(),
3806 None => false,
3807 }
3808 }
3809
3810 fn getenv_unwrap(&self, v: &str) -> Result<Arc<OsStr>, Error> {
3811 match self.getenv(v) {
3812 Some(s) => Ok(s),
3813 None => Err(Error::new(
3814 ErrorKind::EnvVarNotFound,
3815 format!("Environment variable {v} not defined."),
3816 )),
3817 }
3818 }
3819
3820 fn getenv_unwrap_str(&self, v: &str) -> Result<String, Error> {
3821 let env = self.getenv_unwrap(v)?;
3822 env.to_str().map(String::from).ok_or_else(|| {
3823 Error::new(
3824 ErrorKind::EnvVarNotFound,
3825 format!("Environment variable {v} is not valid utf-8."),
3826 )
3827 })
3828 }
3829
3830 /// The list of environment variables to check for a given env, in order of priority.
3831 fn target_envs(&self, env: &str) -> Result<[String; 4], Error> {
3832 let target = self.get_raw_target()?;
3833 let kind = if self.get_is_cross_compile()? {
3834 "TARGET"
3835 } else {
3836 "HOST"
3837 };
3838 let target_u = target.replace('-', "_");
3839
3840 Ok([
3841 format!("{env}_{target}"),
3842 format!("{env}_{target_u}"),
3843 format!("{kind}_{env}"),
3844 env.to_string(),
3845 ])
3846 }
3847
3848 /// Get a single-valued environment variable with target variants.
3849 fn getenv_with_target_prefixes(&self, env: &str) -> Result<Arc<OsStr>, Error> {
3850 // Take from first environment variable in the environment.
3851 let res = self
3852 .target_envs(env)?
3853 .iter()
3854 .filter_map(|env| self.getenv(env))
3855 .next();
3856
3857 match res {
3858 Some(res) => Ok(res),
3859 None => Err(Error::new(
3860 ErrorKind::EnvVarNotFound,
3861 format!("could not find environment variable {env}"),
3862 )),
3863 }
3864 }
3865
3866 /// Get values from CFLAGS-style environment variable.
3867 fn envflags(&self, env: &str) -> Result<Option<Vec<String>>, Error> {
3868 // Collect from all environment variables, in reverse order as in
3869 // `getenv_with_target_prefixes` precedence (so that `CFLAGS_$TARGET`
3870 // can override flags in `TARGET_CFLAGS`, which overrides those in
3871 // `CFLAGS`).
3872 let mut any_set = false;
3873 let mut res = vec![];
3874 for env in self.target_envs(env)?.iter().rev() {
3875 if let Some(var) = self.getenv(env) {
3876 any_set = true;
3877
3878 let var = var.to_string_lossy();
3879 if self.get_shell_escaped_flags() {
3880 res.extend(Shlex::new(&var));
3881 } else {
3882 res.extend(var.split_ascii_whitespace().map(ToString::to_string));
3883 }
3884 }
3885 }
3886
3887 Ok(if any_set { Some(res) } else { None })
3888 }
3889
3890 fn fix_env_for_apple_os(&self, cmd: &mut Command) -> Result<(), Error> {
3891 let target = self.get_target()?;
3892 if cfg!(target_os = "macos") && target.os == "macos" {
3893 // Additionally, `IPHONEOS_DEPLOYMENT_TARGET` must not be set when using the Xcode linker at
3894 // "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld",
3895 // although this is apparently ignored when using the linker at "/usr/bin/ld".
3896 cmd.env_remove("IPHONEOS_DEPLOYMENT_TARGET");
3897 }
3898 Ok(())
3899 }
3900
3901 fn apple_sdk_root_inner(&self, sdk: &str) -> Result<Arc<OsStr>, Error> {
3902 // Code copied from rustc's compiler/rustc_codegen_ssa/src/back/link.rs.
3903 if let Some(sdkroot) = self.getenv("SDKROOT") {
3904 let p = Path::new(&sdkroot);
3905 let does_sdkroot_contain = |strings: &[&str]| {
3906 let sdkroot_str = p.to_string_lossy();
3907 strings.iter().any(|s| sdkroot_str.contains(s))
3908 };
3909 match sdk {
3910 // Ignore `SDKROOT` if it's clearly set for the wrong platform.
3911 "appletvos"
3912 if does_sdkroot_contain(&["TVSimulator.platform", "MacOSX.platform"]) => {}
3913 "appletvsimulator"
3914 if does_sdkroot_contain(&["TVOS.platform", "MacOSX.platform"]) => {}
3915 "iphoneos"
3916 if does_sdkroot_contain(&["iPhoneSimulator.platform", "MacOSX.platform"]) => {}
3917 "iphonesimulator"
3918 if does_sdkroot_contain(&["iPhoneOS.platform", "MacOSX.platform"]) => {}
3919 "macosx10.15"
3920 if does_sdkroot_contain(&["iPhoneOS.platform", "iPhoneSimulator.platform"]) => {
3921 }
3922 "watchos"
3923 if does_sdkroot_contain(&["WatchSimulator.platform", "MacOSX.platform"]) => {}
3924 "watchsimulator"
3925 if does_sdkroot_contain(&["WatchOS.platform", "MacOSX.platform"]) => {}
3926 "xros" if does_sdkroot_contain(&["XRSimulator.platform", "MacOSX.platform"]) => {}
3927 "xrsimulator" if does_sdkroot_contain(&["XROS.platform", "MacOSX.platform"]) => {}
3928 // Ignore `SDKROOT` if it's not a valid path.
3929 _ if !p.is_absolute() || p == Path::new("/") || !p.exists() => {}
3930 _ => return Ok(sdkroot),
3931 }
3932 }
3933
3934 let sdk_path = run_output(
3935 self.cmd("xcrun")
3936 .arg("--show-sdk-path")
3937 .arg("--sdk")
3938 .arg(sdk),
3939 &self.cargo_output,
3940 )?;
3941
3942 let sdk_path = match String::from_utf8(sdk_path) {
3943 Ok(p) => p,
3944 Err(_) => {
3945 return Err(Error::new(
3946 ErrorKind::IOError,
3947 "Unable to determine Apple SDK path.",
3948 ));
3949 }
3950 };
3951 Ok(Arc::from(OsStr::new(sdk_path.trim())))
3952 }
3953
3954 fn apple_sdk_root(&self, target: &TargetInfo<'_>) -> Result<Arc<OsStr>, Error> {
3955 let sdk = target.apple_sdk_name();
3956
3957 if let Some(ret) = self
3958 .build_cache
3959 .apple_sdk_root_cache
3960 .read()
3961 .expect("apple_sdk_root_cache lock failed")
3962 .get(sdk)
3963 .cloned()
3964 {
3965 return Ok(ret);
3966 }
3967 let sdk_path = self.apple_sdk_root_inner(sdk)?;
3968 self.build_cache
3969 .apple_sdk_root_cache
3970 .write()
3971 .expect("apple_sdk_root_cache lock failed")
3972 .insert(sdk.into(), sdk_path.clone());
3973 Ok(sdk_path)
3974 }
3975
3976 fn apple_deployment_target(&self, target: &TargetInfo<'_>) -> Arc<str> {
3977 let sdk = target.apple_sdk_name();
3978 if let Some(ret) = self
3979 .build_cache
3980 .apple_versions_cache
3981 .read()
3982 .expect("apple_versions_cache lock failed")
3983 .get(sdk)
3984 .cloned()
3985 {
3986 return ret;
3987 }
3988
3989 let default_deployment_from_sdk = || -> Option<Arc<str>> {
3990 let version = run_output(
3991 self.cmd("xcrun")
3992 .arg("--show-sdk-version")
3993 .arg("--sdk")
3994 .arg(sdk),
3995 &self.cargo_output,
3996 )
3997 .ok()?;
3998
3999 Some(Arc::from(std::str::from_utf8(&version).ok()?.trim()))
4000 };
4001
4002 let deployment_from_env = |name: &str| -> Option<Arc<str>> {
4003 // note that self.env isn't hit in production codepaths, its mostly just for tests which don't
4004 // set the real env
4005 self.env
4006 .iter()
4007 .find(|(k, _)| &**k == OsStr::new(name))
4008 .map(|(_, v)| v)
4009 .cloned()
4010 .or_else(|| self.getenv(name))?
4011 .to_str()
4012 .map(Arc::from)
4013 };
4014
4015 // Determines if the acquired deployment target is too low to support modern C++ on some Apple platform.
4016 //
4017 // 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.
4018 // If a `cc`` config wants to use C++, we round up to these versions as the baseline.
4019 let maybe_cpp_version_baseline = |deployment_target_ver: Arc<str>| -> Option<Arc<str>> {
4020 if !self.cpp {
4021 return Some(deployment_target_ver);
4022 }
4023
4024 let mut deployment_target = deployment_target_ver
4025 .split('.')
4026 .map(|v| v.parse::<u32>().expect("integer version"));
4027
4028 match target.os {
4029 "macos" => {
4030 let major = deployment_target.next().unwrap_or(0);
4031 let minor = deployment_target.next().unwrap_or(0);
4032
4033 // If below 10.9, we ignore it and let the SDK's target definitions handle it.
4034 if major == 10 && minor < 9 {
4035 self.cargo_output.print_warning(&format_args!(
4036 "macOS deployment target ({deployment_target_ver}) too low, it will be increased"
4037 ));
4038 return None;
4039 }
4040 }
4041 "ios" => {
4042 let major = deployment_target.next().unwrap_or(0);
4043
4044 // If below 10.7, we ignore it and let the SDK's target definitions handle it.
4045 if major < 7 {
4046 self.cargo_output.print_warning(&format_args!(
4047 "iOS deployment target ({deployment_target_ver}) too low, it will be increased"
4048 ));
4049 return None;
4050 }
4051 }
4052 // watchOS, tvOS, visionOS, and others are all new enough that libc++ is their baseline.
4053 _ => {}
4054 }
4055
4056 // If the deployment target met or exceeded the C++ baseline
4057 Some(deployment_target_ver)
4058 };
4059
4060 // The hardcoded minimums here are subject to change in a future compiler release,
4061 // and only exist as last resort fallbacks. Don't consider them stable.
4062 // `cc` doesn't use rustc's `--print deployment-target`` because the compiler's defaults
4063 // don't align well with Apple's SDKs and other third-party libraries that require ~generally~ higher
4064 // deployment targets. rustc isn't interested in those by default though so its fine to be different here.
4065 //
4066 // If no explicit target is passed, `cc` defaults to the current Xcode SDK's `DefaultDeploymentTarget` for better
4067 // compatibility. This is also the crate's historical behavior and what has become a relied-on value.
4068 //
4069 // The ordering of env -> XCode SDK -> old rustc defaults is intentional for performance when using
4070 // an explicit target.
4071 let version: Arc<str> = match target.os {
4072 "macos" => deployment_from_env("MACOSX_DEPLOYMENT_TARGET")
4073 .and_then(maybe_cpp_version_baseline)
4074 .or_else(default_deployment_from_sdk)
4075 .unwrap_or_else(|| {
4076 if target.arch == "aarch64" {
4077 "11.0".into()
4078 } else {
4079 let default: Arc<str> = Arc::from("10.7");
4080 maybe_cpp_version_baseline(default.clone()).unwrap_or(default)
4081 }
4082 }),
4083
4084 "ios" => deployment_from_env("IPHONEOS_DEPLOYMENT_TARGET")
4085 .and_then(maybe_cpp_version_baseline)
4086 .or_else(default_deployment_from_sdk)
4087 .unwrap_or_else(|| "7.0".into()),
4088
4089 "watchos" => deployment_from_env("WATCHOS_DEPLOYMENT_TARGET")
4090 .or_else(default_deployment_from_sdk)
4091 .unwrap_or_else(|| "5.0".into()),
4092
4093 "tvos" => deployment_from_env("TVOS_DEPLOYMENT_TARGET")
4094 .or_else(default_deployment_from_sdk)
4095 .unwrap_or_else(|| "9.0".into()),
4096
4097 "visionos" => deployment_from_env("XROS_DEPLOYMENT_TARGET")
4098 .or_else(default_deployment_from_sdk)
4099 .unwrap_or_else(|| "1.0".into()),
4100
4101 os => unreachable!("unknown Apple OS: {}", os),
4102 };
4103
4104 self.build_cache
4105 .apple_versions_cache
4106 .write()
4107 .expect("apple_versions_cache lock failed")
4108 .insert(sdk.into(), version.clone());
4109
4110 version
4111 }
4112
4113 fn wasm_musl_sysroot(&self) -> Result<Arc<OsStr>, Error> {
4114 if let Some(musl_sysroot_path) = self.getenv("WASM_MUSL_SYSROOT") {
4115 Ok(musl_sysroot_path)
4116 } else {
4117 Err(Error::new(
4118 ErrorKind::EnvVarNotFound,
4119 "Environment variable WASM_MUSL_SYSROOT not defined for wasm32. Download sysroot from GitHub & setup environment variable MUSL_SYSROOT targeting the folder.",
4120 ))
4121 }
4122 }
4123
4124 fn wasi_sysroot(&self) -> Result<Arc<OsStr>, Error> {
4125 if let Some(wasi_sysroot_path) = self.getenv("WASI_SYSROOT") {
4126 Ok(wasi_sysroot_path)
4127 } else {
4128 Err(Error::new(
4129 ErrorKind::EnvVarNotFound,
4130 "Environment variable WASI_SYSROOT not defined. Download sysroot from GitHub & setup environment variable WASI_SYSROOT targeting the folder.",
4131 ))
4132 }
4133 }
4134
4135 fn cuda_file_count(&self) -> usize {
4136 self.files
4137 .iter()
4138 .filter(|file| file.extension() == Some(OsStr::new("cu")))
4139 .count()
4140 }
4141
4142 fn which(&self, tool: &Path, path_entries: Option<&OsStr>) -> Option<PathBuf> {
4143 fn check_exe(mut exe: PathBuf) -> Option<PathBuf> {
4144 let exe_ext = std::env::consts::EXE_EXTENSION;
4145 let check =
4146 exe.exists() || (!exe_ext.is_empty() && exe.set_extension(exe_ext) && exe.exists());
4147 check.then_some(exe)
4148 }
4149
4150 // Loop through PATH entries searching for the |tool|.
4151 let find_exe_in_path = |path_entries: &OsStr| -> Option<PathBuf> {
4152 env::split_paths(path_entries).find_map(|path_entry| check_exe(path_entry.join(tool)))
4153 };
4154
4155 // If |tool| is not just one "word," assume it's an actual path...
4156 if tool.components().count() > 1 {
4157 check_exe(PathBuf::from(tool))
4158 } else {
4159 path_entries
4160 .and_then(find_exe_in_path)
4161 .or_else(|| find_exe_in_path(&self.getenv("PATH")?))
4162 }
4163 }
4164
4165 /// search for |prog| on 'programs' path in '|cc| -print-search-dirs' output
4166 fn search_programs(
4167 &self,
4168 cc: &mut Command,
4169 prog: &Path,
4170 cargo_output: &CargoOutput,
4171 ) -> Option<PathBuf> {
4172 let search_dirs = run_output(
4173 cc.arg("-print-search-dirs"),
4174 // this doesn't concern the compilation so we always want to show warnings.
4175 cargo_output,
4176 )
4177 .ok()?;
4178 // clang driver appears to be forcing UTF-8 output even on Windows,
4179 // hence from_utf8 is assumed to be usable in all cases.
4180 let search_dirs = std::str::from_utf8(&search_dirs).ok()?;
4181 for dirs in search_dirs.split(['\r', '\n']) {
4182 if let Some(path) = dirs.strip_prefix("programs: =") {
4183 return self.which(prog, Some(OsStr::new(path)));
4184 }
4185 }
4186 None
4187 }
4188
4189 fn windows_registry_find(&self, target: &TargetInfo<'_>, tool: &str) -> Option<Command> {
4190 self.windows_registry_find_tool(target, tool)
4191 .map(|c| c.to_command())
4192 }
4193
4194 fn windows_registry_find_tool(&self, target: &TargetInfo<'_>, tool: &str) -> Option<Tool> {
4195 struct BuildEnvGetter<'s>(&'s Build);
4196
4197 impl windows_registry::EnvGetter for BuildEnvGetter<'_> {
4198 fn get_env(&self, name: &str) -> Option<windows_registry::Env> {
4199 self.0.getenv(name).map(windows_registry::Env::Arced)
4200 }
4201 }
4202
4203 if target.env != "msvc" {
4204 return None;
4205 }
4206
4207 windows_registry::find_tool_inner(target.full_arch, tool, &BuildEnvGetter(self))
4208 }
4209}
4210
4211impl Default for Build {
4212 fn default() -> Build {
4213 Build::new()
4214 }
4215}
4216
4217fn fail(s: &str) -> ! {
4218 eprintln!("\n\nerror occurred in cc-rs: {s}\n\n");
4219 std::process::exit(1);
4220}
4221
4222// Use by default minimum available API level
4223// See note about naming here
4224// https://android.googlesource.com/platform/ndk/+/refs/heads/ndk-release-r21/docs/BuildSystemMaintainers.md#Clang
4225static NEW_STANDALONE_ANDROID_COMPILERS: [&str; 4] = [
4226 "aarch64-linux-android21-clang",
4227 "armv7a-linux-androideabi16-clang",
4228 "i686-linux-android16-clang",
4229 "x86_64-linux-android21-clang",
4230];
4231
4232// New "standalone" C/C++ cross-compiler executables from recent Android NDK
4233// are just shell scripts that call main clang binary (from Android NDK) with
4234// proper `--target` argument.
4235//
4236// For example, armv7a-linux-androideabi16-clang passes
4237// `--target=armv7a-linux-androideabi16` to clang.
4238// So to construct proper command line check if
4239// `--target` argument would be passed or not to clang
4240fn android_clang_compiler_uses_target_arg_internally(clang_path: &Path) -> bool {
4241 if let Some(filename) = clang_path.file_name() {
4242 if let Some(filename_str) = filename.to_str() {
4243 if let Some(idx) = filename_str.rfind('-') {
4244 return filename_str.split_at(idx).0.contains("android");
4245 }
4246 }
4247 }
4248 false
4249}
4250
4251// FIXME: Use parsed target.
4252fn autodetect_android_compiler(raw_target: &str, gnu: &str, clang: &str) -> String {
4253 let new_clang_key = match raw_target {
4254 "aarch64-linux-android" => Some("aarch64"),
4255 "armv7-linux-androideabi" => Some("armv7a"),
4256 "i686-linux-android" => Some("i686"),
4257 "x86_64-linux-android" => Some("x86_64"),
4258 _ => None,
4259 };
4260
4261 let new_clang = new_clang_key
4262 .map(|key| {
4263 NEW_STANDALONE_ANDROID_COMPILERS
4264 .iter()
4265 .find(|x| x.starts_with(key))
4266 })
4267 .unwrap_or(None);
4268
4269 if let Some(new_clang) = new_clang {
4270 if Command::new(new_clang).output().is_ok() {
4271 return (*new_clang).into();
4272 }
4273 }
4274
4275 let target = raw_target
4276 .replace("armv7neon", "arm")
4277 .replace("armv7", "arm")
4278 .replace("thumbv7neon", "arm")
4279 .replace("thumbv7", "arm");
4280 let gnu_compiler = format!("{target}-{gnu}");
4281 let clang_compiler = format!("{target}-{clang}");
4282
4283 // On Windows, the Android clang compiler is provided as a `.cmd` file instead
4284 // of a `.exe` file. `std::process::Command` won't run `.cmd` files unless the
4285 // `.cmd` is explicitly appended to the command name, so we do that here.
4286 let clang_compiler_cmd = format!("{target}-{clang}.cmd");
4287
4288 // Check if gnu compiler is present
4289 // if not, use clang
4290 if Command::new(&gnu_compiler).output().is_ok() {
4291 gnu_compiler
4292 } else if cfg!(windows) && Command::new(&clang_compiler_cmd).output().is_ok() {
4293 clang_compiler_cmd
4294 } else {
4295 clang_compiler
4296 }
4297}
4298
4299// Rust and clang/cc don't agree on how to name the target.
4300fn map_darwin_target_from_rust_to_compiler_architecture<'a>(target: &TargetInfo<'a>) -> &'a str {
4301 match target.full_arch {
4302 "aarch64" => "arm64",
4303 "arm64_32" => "arm64_32",
4304 "arm64e" => "arm64e",
4305 "armv7k" => "armv7k",
4306 "armv7s" => "armv7s",
4307 "i386" => "i386",
4308 "i686" => "i386",
4309 "powerpc" => "ppc",
4310 "powerpc64" => "ppc64",
4311 "x86_64" => "x86_64",
4312 "x86_64h" => "x86_64h",
4313 arch => arch,
4314 }
4315}
4316
4317fn is_arm(target: &TargetInfo<'_>) -> bool {
4318 matches!(target.arch, "aarch64" | "arm64ec" | "arm")
4319}
4320
4321#[derive(Clone, Copy, PartialEq)]
4322enum AsmFileExt {
4323 /// `.asm` files. On MSVC targets, we assume these should be passed to MASM
4324 /// (`ml{,64}.exe`).
4325 DotAsm,
4326 /// `.s` or `.S` files, which do not have the special handling on MSVC targets.
4327 DotS,
4328}
4329
4330impl AsmFileExt {
4331 fn from_path(file: &Path) -> Option<Self> {
4332 if let Some(ext) = file.extension() {
4333 if let Some(ext) = ext.to_str() {
4334 let ext = ext.to_lowercase();
4335 match &*ext {
4336 "asm" => return Some(AsmFileExt::DotAsm),
4337 "s" => return Some(AsmFileExt::DotS),
4338 _ => return None,
4339 }
4340 }
4341 }
4342 None
4343 }
4344}
4345
4346/// Returns true if `cc` has been disabled by `CC_FORCE_DISABLE`.
4347fn is_disabled() -> bool {
4348 static CACHE: AtomicU8 = AtomicU8::new(0);
4349
4350 let val = CACHE.load(Relaxed);
4351 // We manually cache the environment var, since we need it in some places
4352 // where we don't have access to a `Build` instance.
4353 #[allow(clippy::disallowed_methods)]
4354 fn compute_is_disabled() -> bool {
4355 match std::env::var_os("CC_FORCE_DISABLE") {
4356 // Not set? Not disabled.
4357 None => false,
4358 // Respect `CC_FORCE_DISABLE=0` and some simple synonyms, otherwise
4359 // we're disabled. This intentionally includes `CC_FORCE_DISABLE=""`
4360 Some(v) => &*v != "0" && &*v != "false" && &*v != "no",
4361 }
4362 }
4363 match val {
4364 2 => true,
4365 1 => false,
4366 0 => {
4367 let truth = compute_is_disabled();
4368 let encoded_truth = if truth { 2u8 } else { 1 };
4369 // Might race against another thread, but we'd both be setting the
4370 // same value so it should be fine.
4371 CACHE.store(encoded_truth, Relaxed);
4372 truth
4373 }
4374 _ => unreachable!(),
4375 }
4376}
4377
4378/// Automates the `if is_disabled() { return error }` check and ensures
4379/// we produce a consistent error message for it.
4380fn check_disabled() -> Result<(), Error> {
4381 if is_disabled() {
4382 return Err(Error::new(
4383 ErrorKind::Disabled,
4384 "the `cc` crate's functionality has been disabled by the `CC_FORCE_DISABLE` environment variable."
4385 ));
4386 }
4387 Ok(())
4388}
4389
4390#[cfg(test)]
4391mod tests {
4392 use super::*;
4393
4394 #[test]
4395 fn test_android_clang_compiler_uses_target_arg_internally() {
4396 for version in 16..21 {
4397 assert!(android_clang_compiler_uses_target_arg_internally(
4398 &PathBuf::from(format!("armv7a-linux-androideabi{}-clang", version))
4399 ));
4400 assert!(android_clang_compiler_uses_target_arg_internally(
4401 &PathBuf::from(format!("armv7a-linux-androideabi{}-clang++", version))
4402 ));
4403 }
4404 assert!(!android_clang_compiler_uses_target_arg_internally(
4405 &PathBuf::from("clang-i686-linux-android")
4406 ));
4407 assert!(!android_clang_compiler_uses_target_arg_internally(
4408 &PathBuf::from("clang")
4409 ));
4410 assert!(!android_clang_compiler_uses_target_arg_internally(
4411 &PathBuf::from("clang++")
4412 ));
4413 }
4414}