]> git.lizzy.rs Git - rust.git/blob - src/bootstrap/cc.rs
Rollup merge of #39195 - nagisa:deny-extra-requirement-in-impl, r=eddyb
[rust.git] / src / bootstrap / cc.rs
1 // Copyright 2015 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 //! C-compiler probing and detection.
12 //!
13 //! This module will fill out the `cc` and `cxx` maps of `Build` by looking for
14 //! C and C++ compilers for each target configured. A compiler is found through
15 //! a number of vectors (in order of precedence)
16 //!
17 //! 1. Configuration via `target.$target.cc` in `config.toml`.
18 //! 2. Configuration via `target.$target.android-ndk` in `config.toml`, if
19 //!    applicable
20 //! 3. Special logic to probe on OpenBSD
21 //! 4. The `CC_$target` environment variable.
22 //! 5. The `CC` environment variable.
23 //! 6. "cc"
24 //!
25 //! Some of this logic is implemented here, but much of it is farmed out to the
26 //! `gcc` crate itself, so we end up having the same fallbacks as there.
27 //! Similar logic is then used to find a C++ compiler, just some s/cc/c++/ is
28 //! used.
29 //!
30 //! It is intended that after this module has run no C/C++ compiler will
31 //! ever be probed for. Instead the compilers found here will be used for
32 //! everything.
33
34 use std::process::Command;
35
36 use build_helper::{cc2ar, output};
37 use gcc;
38
39 use Build;
40 use config::Target;
41
42 pub fn find(build: &mut Build) {
43     // For all targets we're going to need a C compiler for building some shims
44     // and such as well as for being a linker for Rust code.
45     for target in build.config.target.iter() {
46         let mut cfg = gcc::Config::new();
47         cfg.cargo_metadata(false).opt_level(0).debug(false)
48            .target(target).host(&build.config.build);
49
50         let config = build.config.target_config.get(target);
51         if let Some(cc) = config.and_then(|c| c.cc.as_ref()) {
52             cfg.compiler(cc);
53         } else {
54             set_compiler(&mut cfg, "gcc", target, config, build);
55         }
56
57         let compiler = cfg.get_compiler();
58         let ar = cc2ar(compiler.path(), target);
59         build.verbose(&format!("CC_{} = {:?}", target, compiler.path()));
60         if let Some(ref ar) = ar {
61             build.verbose(&format!("AR_{} = {:?}", target, ar));
62         }
63         build.cc.insert(target.to_string(), (compiler, ar));
64     }
65
66     // For all host triples we need to find a C++ compiler as well
67     for host in build.config.host.iter() {
68         let mut cfg = gcc::Config::new();
69         cfg.cargo_metadata(false).opt_level(0).debug(false).cpp(true)
70            .target(host).host(&build.config.build);
71         let config = build.config.target_config.get(host);
72         if let Some(cxx) = config.and_then(|c| c.cxx.as_ref()) {
73             cfg.compiler(cxx);
74         } else {
75             set_compiler(&mut cfg, "g++", host, config, build);
76         }
77         let compiler = cfg.get_compiler();
78         build.verbose(&format!("CXX_{} = {:?}", host, compiler.path()));
79         build.cxx.insert(host.to_string(), compiler);
80     }
81 }
82
83 fn set_compiler(cfg: &mut gcc::Config,
84                 gnu_compiler: &str,
85                 target: &str,
86                 config: Option<&Target>,
87                 build: &Build) {
88     match target {
89         // When compiling for android we may have the NDK configured in the
90         // config.toml in which case we look there. Otherwise the default
91         // compiler already takes into account the triple in question.
92         t if t.contains("android") => {
93             if let Some(ndk) = config.and_then(|c| c.ndk.as_ref()) {
94                 let target = target.replace("armv7", "arm");
95                 let compiler = format!("{}-{}", target, gnu_compiler);
96                 cfg.compiler(ndk.join("bin").join(compiler));
97             }
98         }
99
100         // The default gcc version from OpenBSD may be too old, try using egcc,
101         // which is a gcc version from ports, if this is the case.
102         t if t.contains("openbsd") => {
103             let c = cfg.get_compiler();
104             if !c.path().ends_with(gnu_compiler) {
105                 return
106             }
107
108             let output = output(c.to_command().arg("--version"));
109             let i = match output.find(" 4.") {
110                 Some(i) => i,
111                 None => return,
112             };
113             match output[i + 3..].chars().next().unwrap() {
114                 '0' ... '6' => {}
115                 _ => return,
116             }
117             let alternative = format!("e{}", gnu_compiler);
118             if Command::new(&alternative).output().is_ok() {
119                 cfg.compiler(alternative);
120             }
121         }
122
123         "mips-unknown-linux-musl" => {
124             if cfg.get_compiler().path().to_str() == Some("gcc") {
125                 cfg.compiler("mips-linux-musl-gcc");
126             }
127         }
128         "mipsel-unknown-linux-musl" => {
129             if cfg.get_compiler().path().to_str() == Some("gcc") {
130                 cfg.compiler("mipsel-linux-musl-gcc");
131             }
132         }
133
134         t if t.contains("musl") => {
135             if let Some(root) = build.musl_root(target) {
136                 let guess = root.join("bin/musl-gcc");
137                 if guess.exists() {
138                     cfg.compiler(guess);
139                 }
140             }
141         }
142
143         _ => {}
144     }
145 }