]> git.lizzy.rs Git - rust.git/blob - src/bootstrap/native.rs
Rollup merge of #99043 - compiler-errors:derive-nit, r=cjgillot
[rust.git] / src / bootstrap / native.rs
1 //! Compilation of native dependencies like LLVM.
2 //!
3 //! Native projects like LLVM unfortunately aren't suited just yet for
4 //! compilation in build scripts that Cargo has. This is because the
5 //! compilation takes a *very* long time but also because we don't want to
6 //! compile LLVM 3 times as part of a normal bootstrap (we want it cached).
7 //!
8 //! LLVM and compiler-rt are essentially just wired up to everything else to
9 //! ensure that they're always in place if needed.
10
11 use std::env;
12 use std::env::consts::EXE_EXTENSION;
13 use std::ffi::{OsStr, OsString};
14 use std::fs::{self, File};
15 use std::io;
16 use std::path::{Path, PathBuf};
17 use std::process::Command;
18
19 use crate::builder::{Builder, RunConfig, ShouldRun, Step};
20 use crate::config::TargetSelection;
21 use crate::util::{self, exe, output, program_out_of_date, t, up_to_date};
22 use crate::{CLang, GitRepo};
23
24 pub struct Meta {
25     stamp: HashStamp,
26     build_llvm_config: PathBuf,
27     out_dir: PathBuf,
28     root: String,
29 }
30
31 // Linker flags to pass to LLVM's CMake invocation.
32 #[derive(Debug, Clone, Default)]
33 struct LdFlags {
34     // CMAKE_EXE_LINKER_FLAGS
35     exe: OsString,
36     // CMAKE_SHARED_LINKER_FLAGS
37     shared: OsString,
38     // CMAKE_MODULE_LINKER_FLAGS
39     module: OsString,
40 }
41
42 impl LdFlags {
43     fn push_all(&mut self, s: impl AsRef<OsStr>) {
44         let s = s.as_ref();
45         self.exe.push(" ");
46         self.exe.push(s);
47         self.shared.push(" ");
48         self.shared.push(s);
49         self.module.push(" ");
50         self.module.push(s);
51     }
52 }
53
54 // This returns whether we've already previously built LLVM.
55 //
56 // It's used to avoid busting caches during x.py check -- if we've already built
57 // LLVM, it's fine for us to not try to avoid doing so.
58 //
59 // This will return the llvm-config if it can get it (but it will not build it
60 // if not).
61 pub fn prebuilt_llvm_config(
62     builder: &Builder<'_>,
63     target: TargetSelection,
64 ) -> Result<PathBuf, Meta> {
65     maybe_download_ci_llvm(builder);
66
67     // If we're using a custom LLVM bail out here, but we can only use a
68     // custom LLVM for the build triple.
69     if let Some(config) = builder.config.target_config.get(&target) {
70         if let Some(ref s) = config.llvm_config {
71             check_llvm_version(builder, s);
72             return Ok(s.to_path_buf());
73         }
74     }
75
76     let root = "src/llvm-project/llvm";
77     let out_dir = builder.llvm_out(target);
78
79     let mut llvm_config_ret_dir = builder.llvm_out(builder.config.build);
80     if !builder.config.build.contains("msvc") || builder.ninja() {
81         llvm_config_ret_dir.push("build");
82     }
83     llvm_config_ret_dir.push("bin");
84
85     let build_llvm_config = llvm_config_ret_dir.join(exe("llvm-config", builder.config.build));
86
87     let stamp = out_dir.join("llvm-finished-building");
88     let stamp = HashStamp::new(stamp, builder.in_tree_llvm_info.sha());
89
90     if builder.config.llvm_skip_rebuild && stamp.path.exists() {
91         builder.info(
92             "Warning: \
93                 Using a potentially stale build of LLVM; \
94                 This may not behave well.",
95         );
96         return Ok(build_llvm_config);
97     }
98
99     if stamp.is_done() {
100         if stamp.hash.is_none() {
101             builder.info(
102                 "Could not determine the LLVM submodule commit hash. \
103                      Assuming that an LLVM rebuild is not necessary.",
104             );
105             builder.info(&format!(
106                 "To force LLVM to rebuild, remove the file `{}`",
107                 stamp.path.display()
108             ));
109         }
110         return Ok(build_llvm_config);
111     }
112
113     Err(Meta { stamp, build_llvm_config, out_dir, root: root.into() })
114 }
115
116 pub(crate) fn maybe_download_ci_llvm(builder: &Builder<'_>) {
117     let config = &builder.config;
118     if !config.llvm_from_ci {
119         return;
120     }
121     let mut rev_list = Command::new("git");
122     rev_list.args(&[
123         PathBuf::from("rev-list"),
124         format!("--author={}", builder.config.stage0_metadata.config.git_merge_commit_email).into(),
125         "-n1".into(),
126         "--first-parent".into(),
127         "HEAD".into(),
128         "--".into(),
129         builder.src.join("src/llvm-project"),
130         builder.src.join("src/bootstrap/download-ci-llvm-stamp"),
131         // the LLVM shared object file is named `LLVM-12-rust-{version}-nightly`
132         builder.src.join("src/version"),
133     ]);
134     let llvm_sha = output(&mut rev_list);
135     let llvm_sha = llvm_sha.trim();
136
137     if llvm_sha == "" {
138         eprintln!("error: could not find commit hash for downloading LLVM");
139         eprintln!("help: maybe your repository history is too shallow?");
140         eprintln!("help: consider disabling `download-ci-llvm`");
141         eprintln!("help: or fetch enough history to include one upstream commit");
142         panic!();
143     }
144
145     let llvm_root = config.ci_llvm_root();
146     let llvm_stamp = llvm_root.join(".llvm-stamp");
147     let key = format!("{}{}", llvm_sha, config.llvm_assertions);
148     if program_out_of_date(&llvm_stamp, &key) && !config.dry_run {
149         download_ci_llvm(builder, &llvm_sha);
150         for binary in ["llvm-config", "FileCheck"] {
151             builder.fix_bin_or_dylib(&llvm_root.join("bin").join(binary));
152         }
153
154         // Update the timestamp of llvm-config to force rustc_llvm to be
155         // rebuilt. This is a hacky workaround for a deficiency in Cargo where
156         // the rerun-if-changed directive doesn't handle changes very well.
157         // https://github.com/rust-lang/cargo/issues/10791
158         // Cargo only compares the timestamp of the file relative to the last
159         // time `rustc_llvm` build script ran. However, the timestamps of the
160         // files in the tarball are in the past, so it doesn't trigger a
161         // rebuild.
162         let now = filetime::FileTime::from_system_time(std::time::SystemTime::now());
163         let llvm_config = llvm_root.join("bin").join(exe("llvm-config", builder.config.build));
164         t!(filetime::set_file_times(&llvm_config, now, now));
165
166         let llvm_lib = llvm_root.join("lib");
167         for entry in t!(fs::read_dir(&llvm_lib)) {
168             let lib = t!(entry).path();
169             if lib.extension().map_or(false, |ext| ext == "so") {
170                 builder.fix_bin_or_dylib(&lib);
171             }
172         }
173         t!(fs::write(llvm_stamp, key));
174     }
175 }
176
177 fn download_ci_llvm(builder: &Builder<'_>, llvm_sha: &str) {
178     let llvm_assertions = builder.config.llvm_assertions;
179
180     let cache_prefix = format!("llvm-{}-{}", llvm_sha, llvm_assertions);
181     let cache_dst = builder.out.join("cache");
182     let rustc_cache = cache_dst.join(cache_prefix);
183     if !rustc_cache.exists() {
184         t!(fs::create_dir_all(&rustc_cache));
185     }
186     let base = if llvm_assertions {
187         &builder.config.stage0_metadata.config.artifacts_with_llvm_assertions_server
188     } else {
189         &builder.config.stage0_metadata.config.artifacts_server
190     };
191     let filename = format!("rust-dev-nightly-{}.tar.xz", builder.build.build.triple);
192     let tarball = rustc_cache.join(&filename);
193     if !tarball.exists() {
194         let help_on_error = "error: failed to download llvm from ci
195
196 help: old builds get deleted after a certain time
197 help: if trying to compile an old commit of rustc, disable `download-ci-llvm` in config.toml:
198
199 [llvm]
200 download-ci-llvm = false
201 ";
202         builder.download_component(
203             &format!("{base}/{llvm_sha}/{filename}"),
204             &tarball,
205             help_on_error,
206         );
207     }
208     let llvm_root = builder.config.ci_llvm_root();
209     builder.unpack(&tarball, &llvm_root, "rust-dev");
210 }
211
212 #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
213 pub struct Llvm {
214     pub target: TargetSelection,
215 }
216
217 impl Step for Llvm {
218     type Output = PathBuf; // path to llvm-config
219
220     const ONLY_HOSTS: bool = true;
221
222     fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
223         run.path("src/llvm-project").path("src/llvm-project/llvm")
224     }
225
226     fn make_run(run: RunConfig<'_>) {
227         run.builder.ensure(Llvm { target: run.target });
228     }
229
230     /// Compile LLVM for `target`.
231     fn run(self, builder: &Builder<'_>) -> PathBuf {
232         let target = self.target;
233         let target_native = if self.target.starts_with("riscv") {
234             // RISC-V target triples in Rust is not named the same as C compiler target triples.
235             // This converts Rust RISC-V target triples to C compiler triples.
236             let idx = target.triple.find('-').unwrap();
237
238             format!("riscv{}{}", &target.triple[5..7], &target.triple[idx..])
239         } else if self.target.starts_with("powerpc") && self.target.ends_with("freebsd") {
240             // FreeBSD 13 had incompatible ABI changes on all PowerPC platforms.
241             // Set the version suffix to 13.0 so the correct target details are used.
242             format!("{}{}", self.target, "13.0")
243         } else {
244             target.to_string()
245         };
246
247         let Meta { stamp, build_llvm_config, out_dir, root } =
248             match prebuilt_llvm_config(builder, target) {
249                 Ok(p) => return p,
250                 Err(m) => m,
251             };
252
253         builder.update_submodule(&Path::new("src").join("llvm-project"));
254         if builder.llvm_link_shared() && target.contains("windows") {
255             panic!("shared linking to LLVM is not currently supported on {}", target.triple);
256         }
257
258         builder.info(&format!("Building LLVM for {}", target));
259         t!(stamp.remove());
260         let _time = util::timeit(&builder);
261         t!(fs::create_dir_all(&out_dir));
262
263         // https://llvm.org/docs/CMake.html
264         let mut cfg = cmake::Config::new(builder.src.join(root));
265         let mut ldflags = LdFlags::default();
266
267         let profile = match (builder.config.llvm_optimize, builder.config.llvm_release_debuginfo) {
268             (false, _) => "Debug",
269             (true, false) => "Release",
270             (true, true) => "RelWithDebInfo",
271         };
272
273         // NOTE: remember to also update `config.toml.example` when changing the
274         // defaults!
275         let llvm_targets = match &builder.config.llvm_targets {
276             Some(s) => s,
277             None => {
278                 "AArch64;ARM;BPF;Hexagon;MSP430;Mips;NVPTX;PowerPC;RISCV;\
279                      Sparc;SystemZ;WebAssembly;X86"
280             }
281         };
282
283         let llvm_exp_targets = match builder.config.llvm_experimental_targets {
284             Some(ref s) => s,
285             None => "AVR;M68k",
286         };
287
288         let assertions = if builder.config.llvm_assertions { "ON" } else { "OFF" };
289         let plugins = if builder.config.llvm_plugins { "ON" } else { "OFF" };
290         let enable_tests = if builder.config.llvm_tests { "ON" } else { "OFF" };
291
292         cfg.out_dir(&out_dir)
293             .profile(profile)
294             .define("LLVM_ENABLE_ASSERTIONS", assertions)
295             .define("LLVM_ENABLE_PLUGINS", plugins)
296             .define("LLVM_TARGETS_TO_BUILD", llvm_targets)
297             .define("LLVM_EXPERIMENTAL_TARGETS_TO_BUILD", llvm_exp_targets)
298             .define("LLVM_INCLUDE_EXAMPLES", "OFF")
299             .define("LLVM_INCLUDE_DOCS", "OFF")
300             .define("LLVM_INCLUDE_BENCHMARKS", "OFF")
301             .define("LLVM_INCLUDE_TESTS", enable_tests)
302             .define("LLVM_ENABLE_TERMINFO", "OFF")
303             .define("LLVM_ENABLE_LIBEDIT", "OFF")
304             .define("LLVM_ENABLE_BINDINGS", "OFF")
305             .define("LLVM_ENABLE_Z3_SOLVER", "OFF")
306             .define("LLVM_PARALLEL_COMPILE_JOBS", builder.jobs().to_string())
307             .define("LLVM_TARGET_ARCH", target_native.split('-').next().unwrap())
308             .define("LLVM_DEFAULT_TARGET_TRIPLE", target_native);
309
310         // Parts of our test suite rely on the `FileCheck` tool, which is built by default in
311         // `build/$TARGET/llvm/build/bin` is but *not* then installed to `build/$TARGET/llvm/bin`.
312         // This flag makes sure `FileCheck` is copied in the final binaries directory.
313         cfg.define("LLVM_INSTALL_UTILS", "ON");
314
315         if builder.config.llvm_profile_generate {
316             cfg.define("LLVM_BUILD_INSTRUMENTED", "IR");
317             if let Ok(llvm_profile_dir) = std::env::var("LLVM_PROFILE_DIR") {
318                 cfg.define("LLVM_PROFILE_DATA_DIR", llvm_profile_dir);
319             }
320             cfg.define("LLVM_BUILD_RUNTIME", "No");
321         }
322         if let Some(path) = builder.config.llvm_profile_use.as_ref() {
323             cfg.define("LLVM_PROFDATA_FILE", &path);
324         }
325
326         if target != "aarch64-apple-darwin" && !target.contains("windows") {
327             cfg.define("LLVM_ENABLE_ZLIB", "ON");
328         } else {
329             cfg.define("LLVM_ENABLE_ZLIB", "OFF");
330         }
331
332         // Are we compiling for iOS/tvOS/watchOS?
333         if target.contains("apple-ios")
334             || target.contains("apple-tvos")
335             || target.contains("apple-watchos")
336         {
337             // These two defines prevent CMake from automatically trying to add a MacOSX sysroot, which leads to a compiler error.
338             cfg.define("CMAKE_OSX_SYSROOT", "/");
339             cfg.define("CMAKE_OSX_DEPLOYMENT_TARGET", "");
340             // Prevent cmake from adding -bundle to CFLAGS automatically, which leads to a compiler error because "-bitcode_bundle" also gets added.
341             cfg.define("LLVM_ENABLE_PLUGINS", "OFF");
342             // Zlib fails to link properly, leading to a compiler error.
343             cfg.define("LLVM_ENABLE_ZLIB", "OFF");
344         }
345
346         if builder.config.llvm_thin_lto {
347             cfg.define("LLVM_ENABLE_LTO", "Thin");
348             if !target.contains("apple") {
349                 cfg.define("LLVM_ENABLE_LLD", "ON");
350             }
351         }
352
353         // This setting makes the LLVM tools link to the dynamic LLVM library,
354         // which saves both memory during parallel links and overall disk space
355         // for the tools. We don't do this on every platform as it doesn't work
356         // equally well everywhere.
357         //
358         // If we're not linking rustc to a dynamic LLVM, though, then don't link
359         // tools to it.
360         let llvm_link_shared =
361             builder.llvm_link_tools_dynamically(target) && builder.llvm_link_shared();
362         if llvm_link_shared {
363             cfg.define("LLVM_LINK_LLVM_DYLIB", "ON");
364         }
365
366         if target.starts_with("riscv") && !target.contains("freebsd") {
367             // RISC-V GCC erroneously requires linking against
368             // `libatomic` when using 1-byte and 2-byte C++
369             // atomics but the LLVM build system check cannot
370             // detect this. Therefore it is set manually here.
371             // FreeBSD uses Clang as its system compiler and
372             // provides no libatomic in its base system so does
373             // not want this.
374             ldflags.exe.push(" -latomic");
375             ldflags.shared.push(" -latomic");
376         }
377
378         if target.contains("msvc") {
379             cfg.define("LLVM_USE_CRT_DEBUG", "MT");
380             cfg.define("LLVM_USE_CRT_RELEASE", "MT");
381             cfg.define("LLVM_USE_CRT_RELWITHDEBINFO", "MT");
382             cfg.static_crt(true);
383         }
384
385         if target.starts_with("i686") {
386             cfg.define("LLVM_BUILD_32_BITS", "ON");
387         }
388
389         let mut enabled_llvm_projects = Vec::new();
390
391         if util::forcing_clang_based_tests() {
392             enabled_llvm_projects.push("clang");
393             enabled_llvm_projects.push("compiler-rt");
394         }
395
396         if builder.config.llvm_polly {
397             enabled_llvm_projects.push("polly");
398         }
399
400         if builder.config.llvm_clang {
401             enabled_llvm_projects.push("clang");
402         }
403
404         // We want libxml to be disabled.
405         // See https://github.com/rust-lang/rust/pull/50104
406         cfg.define("LLVM_ENABLE_LIBXML2", "OFF");
407
408         if !enabled_llvm_projects.is_empty() {
409             enabled_llvm_projects.sort();
410             enabled_llvm_projects.dedup();
411             cfg.define("LLVM_ENABLE_PROJECTS", enabled_llvm_projects.join(";"));
412         }
413
414         if let Some(num_linkers) = builder.config.llvm_link_jobs {
415             if num_linkers > 0 {
416                 cfg.define("LLVM_PARALLEL_LINK_JOBS", num_linkers.to_string());
417             }
418         }
419
420         // Workaround for ppc32 lld limitation
421         if target == "powerpc-unknown-freebsd" {
422             ldflags.exe.push(" -fuse-ld=bfd");
423         }
424
425         // https://llvm.org/docs/HowToCrossCompileLLVM.html
426         if target != builder.config.build {
427             builder.ensure(Llvm { target: builder.config.build });
428             // FIXME: if the llvm root for the build triple is overridden then we
429             //        should use llvm-tblgen from there, also should verify that it
430             //        actually exists most of the time in normal installs of LLVM.
431             let host_bin = builder.llvm_out(builder.config.build).join("bin");
432             cfg.define("CMAKE_CROSSCOMPILING", "True");
433             cfg.define("LLVM_TABLEGEN", host_bin.join("llvm-tblgen").with_extension(EXE_EXTENSION));
434             cfg.define("LLVM_NM", host_bin.join("llvm-nm").with_extension(EXE_EXTENSION));
435             cfg.define(
436                 "LLVM_CONFIG_PATH",
437                 host_bin.join("llvm-config").with_extension(EXE_EXTENSION),
438             );
439         }
440
441         let llvm_version_suffix = if let Some(ref suffix) = builder.config.llvm_version_suffix {
442             // Allow version-suffix="" to not define a version suffix at all.
443             if !suffix.is_empty() { Some(suffix.to_string()) } else { None }
444         } else if builder.config.channel == "dev" {
445             // Changes to a version suffix require a complete rebuild of the LLVM.
446             // To avoid rebuilds during a time of version bump, don't include rustc
447             // release number on the dev channel.
448             Some("-rust-dev".to_string())
449         } else {
450             Some(format!("-rust-{}-{}", builder.version, builder.config.channel))
451         };
452         if let Some(ref suffix) = llvm_version_suffix {
453             cfg.define("LLVM_VERSION_SUFFIX", suffix);
454         }
455
456         if let Some(ref linker) = builder.config.llvm_use_linker {
457             cfg.define("LLVM_USE_LINKER", linker);
458         }
459
460         if builder.config.llvm_allow_old_toolchain {
461             cfg.define("LLVM_TEMPORARILY_ALLOW_OLD_TOOLCHAIN", "YES");
462         }
463
464         configure_cmake(builder, target, &mut cfg, true, ldflags);
465
466         for (key, val) in &builder.config.llvm_build_config {
467             cfg.define(key, val);
468         }
469
470         // FIXME: we don't actually need to build all LLVM tools and all LLVM
471         //        libraries here, e.g., we just want a few components and a few
472         //        tools. Figure out how to filter them down and only build the right
473         //        tools and libs on all platforms.
474
475         if builder.config.dry_run {
476             return build_llvm_config;
477         }
478
479         cfg.build();
480
481         // When building LLVM with LLVM_LINK_LLVM_DYLIB for macOS, an unversioned
482         // libLLVM.dylib will be built. However, llvm-config will still look
483         // for a versioned path like libLLVM-14.dylib. Manually create a symbolic
484         // link to make llvm-config happy.
485         if llvm_link_shared && target.contains("apple-darwin") {
486             let mut cmd = Command::new(&build_llvm_config);
487             let version = output(cmd.arg("--version"));
488             let major = version.split('.').next().unwrap();
489             let lib_name = match llvm_version_suffix {
490                 Some(s) => format!("libLLVM-{}{}.dylib", major, s),
491                 None => format!("libLLVM-{}.dylib", major),
492             };
493
494             let lib_llvm = out_dir.join("build").join("lib").join(lib_name);
495             if !lib_llvm.exists() {
496                 t!(builder.symlink_file("libLLVM.dylib", &lib_llvm));
497             }
498         }
499
500         t!(stamp.write());
501
502         build_llvm_config
503     }
504 }
505
506 fn check_llvm_version(builder: &Builder<'_>, llvm_config: &Path) {
507     if !builder.config.llvm_version_check {
508         return;
509     }
510
511     if builder.config.dry_run {
512         return;
513     }
514
515     let mut cmd = Command::new(llvm_config);
516     let version = output(cmd.arg("--version"));
517     let mut parts = version.split('.').take(2).filter_map(|s| s.parse::<u32>().ok());
518     if let (Some(major), Some(_minor)) = (parts.next(), parts.next()) {
519         if major >= 12 {
520             return;
521         }
522     }
523     panic!("\n\nbad LLVM version: {}, need >=12.0\n\n", version)
524 }
525
526 fn configure_cmake(
527     builder: &Builder<'_>,
528     target: TargetSelection,
529     cfg: &mut cmake::Config,
530     use_compiler_launcher: bool,
531     mut ldflags: LdFlags,
532 ) {
533     // Do not print installation messages for up-to-date files.
534     // LLVM and LLD builds can produce a lot of those and hit CI limits on log size.
535     cfg.define("CMAKE_INSTALL_MESSAGE", "LAZY");
536
537     // Do not allow the user's value of DESTDIR to influence where
538     // LLVM will install itself. LLVM must always be installed in our
539     // own build directories.
540     cfg.env("DESTDIR", "");
541
542     if builder.ninja() {
543         cfg.generator("Ninja");
544     }
545     cfg.target(&target.triple).host(&builder.config.build.triple);
546
547     if target != builder.config.build {
548         if target.contains("netbsd") {
549             cfg.define("CMAKE_SYSTEM_NAME", "NetBSD");
550         } else if target.contains("freebsd") {
551             cfg.define("CMAKE_SYSTEM_NAME", "FreeBSD");
552         } else if target.contains("windows") {
553             cfg.define("CMAKE_SYSTEM_NAME", "Windows");
554         } else if target.contains("haiku") {
555             cfg.define("CMAKE_SYSTEM_NAME", "Haiku");
556         } else if target.contains("solaris") || target.contains("illumos") {
557             cfg.define("CMAKE_SYSTEM_NAME", "SunOS");
558         }
559         // When cross-compiling we should also set CMAKE_SYSTEM_VERSION, but in
560         // that case like CMake we cannot easily determine system version either.
561         //
562         // Since, the LLVM itself makes rather limited use of version checks in
563         // CMakeFiles (and then only in tests), and so far no issues have been
564         // reported, the system version is currently left unset.
565     }
566
567     let sanitize_cc = |cc: &Path| {
568         if target.contains("msvc") {
569             OsString::from(cc.to_str().unwrap().replace("\\", "/"))
570         } else {
571             cc.as_os_str().to_owned()
572         }
573     };
574
575     // MSVC with CMake uses msbuild by default which doesn't respect these
576     // vars that we'd otherwise configure. In that case we just skip this
577     // entirely.
578     if target.contains("msvc") && !builder.ninja() {
579         return;
580     }
581
582     let (cc, cxx) = match builder.config.llvm_clang_cl {
583         Some(ref cl) => (cl.as_ref(), cl.as_ref()),
584         None => (builder.cc(target), builder.cxx(target).unwrap()),
585     };
586
587     // Handle msvc + ninja + ccache specially (this is what the bots use)
588     if target.contains("msvc") && builder.ninja() && builder.config.ccache.is_some() {
589         let mut wrap_cc = env::current_exe().expect("failed to get cwd");
590         wrap_cc.set_file_name("sccache-plus-cl.exe");
591
592         cfg.define("CMAKE_C_COMPILER", sanitize_cc(&wrap_cc))
593             .define("CMAKE_CXX_COMPILER", sanitize_cc(&wrap_cc));
594         cfg.env("SCCACHE_PATH", builder.config.ccache.as_ref().unwrap())
595             .env("SCCACHE_TARGET", target.triple)
596             .env("SCCACHE_CC", &cc)
597             .env("SCCACHE_CXX", &cxx);
598
599         // Building LLVM on MSVC can be a little ludicrous at times. We're so far
600         // off the beaten path here that I'm not really sure this is even half
601         // supported any more. Here we're trying to:
602         //
603         // * Build LLVM on MSVC
604         // * Build LLVM with `clang-cl` instead of `cl.exe`
605         // * Build a project with `sccache`
606         // * Build for 32-bit as well
607         // * Build with Ninja
608         //
609         // For `cl.exe` there are different binaries to compile 32/64 bit which
610         // we use but for `clang-cl` there's only one which internally
611         // multiplexes via flags. As a result it appears that CMake's detection
612         // of a compiler's architecture and such on MSVC **doesn't** pass any
613         // custom flags we pass in CMAKE_CXX_FLAGS below. This means that if we
614         // use `clang-cl.exe` it's always diagnosed as a 64-bit compiler which
615         // definitely causes problems since all the env vars are pointing to
616         // 32-bit libraries.
617         //
618         // To hack around this... again... we pass an argument that's
619         // unconditionally passed in the sccache shim. This'll get CMake to
620         // correctly diagnose it's doing a 32-bit compilation and LLVM will
621         // internally configure itself appropriately.
622         if builder.config.llvm_clang_cl.is_some() && target.contains("i686") {
623             cfg.env("SCCACHE_EXTRA_ARGS", "-m32");
624         }
625     } else {
626         // If ccache is configured we inform the build a little differently how
627         // to invoke ccache while also invoking our compilers.
628         if use_compiler_launcher {
629             if let Some(ref ccache) = builder.config.ccache {
630                 cfg.define("CMAKE_C_COMPILER_LAUNCHER", ccache)
631                     .define("CMAKE_CXX_COMPILER_LAUNCHER", ccache);
632             }
633         }
634         cfg.define("CMAKE_C_COMPILER", sanitize_cc(cc))
635             .define("CMAKE_CXX_COMPILER", sanitize_cc(cxx))
636             .define("CMAKE_ASM_COMPILER", sanitize_cc(cc));
637     }
638
639     cfg.build_arg("-j").build_arg(builder.jobs().to_string());
640     let mut cflags: OsString = builder.cflags(target, GitRepo::Llvm, CLang::C).join(" ").into();
641     if let Some(ref s) = builder.config.llvm_cflags {
642         cflags.push(" ");
643         cflags.push(s);
644     }
645     // Some compiler features used by LLVM (such as thread locals) will not work on a min version below iOS 10.
646     if target.contains("apple-ios") {
647         if target.contains("86-") {
648             cflags.push(" -miphonesimulator-version-min=10.0");
649         } else {
650             cflags.push(" -miphoneos-version-min=10.0");
651         }
652     }
653     if builder.config.llvm_clang_cl.is_some() {
654         cflags.push(&format!(" --target={}", target));
655     }
656     cfg.define("CMAKE_C_FLAGS", cflags);
657     let mut cxxflags: OsString = builder.cflags(target, GitRepo::Llvm, CLang::Cxx).join(" ").into();
658     if let Some(ref s) = builder.config.llvm_cxxflags {
659         cxxflags.push(" ");
660         cxxflags.push(s);
661     }
662     if builder.config.llvm_clang_cl.is_some() {
663         cxxflags.push(&format!(" --target={}", target));
664     }
665     cfg.define("CMAKE_CXX_FLAGS", cxxflags);
666     if let Some(ar) = builder.ar(target) {
667         if ar.is_absolute() {
668             // LLVM build breaks if `CMAKE_AR` is a relative path, for some reason it
669             // tries to resolve this path in the LLVM build directory.
670             cfg.define("CMAKE_AR", sanitize_cc(ar));
671         }
672     }
673
674     if let Some(ranlib) = builder.ranlib(target) {
675         if ranlib.is_absolute() {
676             // LLVM build breaks if `CMAKE_RANLIB` is a relative path, for some reason it
677             // tries to resolve this path in the LLVM build directory.
678             cfg.define("CMAKE_RANLIB", sanitize_cc(ranlib));
679         }
680     }
681
682     if let Some(ref flags) = builder.config.llvm_ldflags {
683         ldflags.push_all(flags);
684     }
685
686     if let Some(flags) = get_var("LDFLAGS", &builder.config.build.triple, &target.triple) {
687         ldflags.push_all(&flags);
688     }
689
690     // For distribution we want the LLVM tools to be *statically* linked to libstdc++.
691     // We also do this if the user explicitly requested static libstdc++.
692     if builder.config.llvm_static_stdcpp {
693         if !target.contains("msvc") && !target.contains("netbsd") && !target.contains("solaris") {
694             if target.contains("apple") || target.contains("windows") {
695                 ldflags.push_all("-static-libstdc++");
696             } else {
697                 ldflags.push_all("-Wl,-Bsymbolic -static-libstdc++");
698             }
699         }
700     }
701
702     cfg.define("CMAKE_SHARED_LINKER_FLAGS", &ldflags.shared);
703     cfg.define("CMAKE_MODULE_LINKER_FLAGS", &ldflags.module);
704     cfg.define("CMAKE_EXE_LINKER_FLAGS", &ldflags.exe);
705
706     if env::var_os("SCCACHE_ERROR_LOG").is_some() {
707         cfg.env("RUSTC_LOG", "sccache=warn");
708     }
709 }
710
711 // Adapted from https://github.com/alexcrichton/cc-rs/blob/fba7feded71ee4f63cfe885673ead6d7b4f2f454/src/lib.rs#L2347-L2365
712 fn get_var(var_base: &str, host: &str, target: &str) -> Option<OsString> {
713     let kind = if host == target { "HOST" } else { "TARGET" };
714     let target_u = target.replace("-", "_");
715     env::var_os(&format!("{}_{}", var_base, target))
716         .or_else(|| env::var_os(&format!("{}_{}", var_base, target_u)))
717         .or_else(|| env::var_os(&format!("{}_{}", kind, var_base)))
718         .or_else(|| env::var_os(var_base))
719 }
720
721 #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
722 pub struct Lld {
723     pub target: TargetSelection,
724 }
725
726 impl Step for Lld {
727     type Output = PathBuf;
728     const ONLY_HOSTS: bool = true;
729
730     fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
731         run.path("src/llvm-project/lld")
732     }
733
734     fn make_run(run: RunConfig<'_>) {
735         run.builder.ensure(Lld { target: run.target });
736     }
737
738     /// Compile LLD for `target`.
739     fn run(self, builder: &Builder<'_>) -> PathBuf {
740         if builder.config.dry_run {
741             return PathBuf::from("lld-out-dir-test-gen");
742         }
743         let target = self.target;
744
745         let llvm_config = builder.ensure(Llvm { target: self.target });
746
747         let out_dir = builder.lld_out(target);
748         let done_stamp = out_dir.join("lld-finished-building");
749         if done_stamp.exists() {
750             return out_dir;
751         }
752
753         builder.info(&format!("Building LLD for {}", target));
754         let _time = util::timeit(&builder);
755         t!(fs::create_dir_all(&out_dir));
756
757         let mut cfg = cmake::Config::new(builder.src.join("src/llvm-project/lld"));
758         configure_cmake(builder, target, &mut cfg, true, LdFlags::default());
759
760         // This is an awful, awful hack. Discovered when we migrated to using
761         // clang-cl to compile LLVM/LLD it turns out that LLD, when built out of
762         // tree, will execute `llvm-config --cmakedir` and then tell CMake about
763         // that directory for later processing. Unfortunately if this path has
764         // forward slashes in it (which it basically always does on Windows)
765         // then CMake will hit a syntax error later on as... something isn't
766         // escaped it seems?
767         //
768         // Instead of attempting to fix this problem in upstream CMake and/or
769         // LLVM/LLD we just hack around it here. This thin wrapper will take the
770         // output from llvm-config and replace all instances of `\` with `/` to
771         // ensure we don't hit the same bugs with escaping. It means that you
772         // can't build on a system where your paths require `\` on Windows, but
773         // there's probably a lot of reasons you can't do that other than this.
774         let llvm_config_shim = env::current_exe().unwrap().with_file_name("llvm-config-wrapper");
775
776         // Re-use the same flags as llvm to control the level of debug information
777         // generated for lld.
778         let profile = match (builder.config.llvm_optimize, builder.config.llvm_release_debuginfo) {
779             (false, _) => "Debug",
780             (true, false) => "Release",
781             (true, true) => "RelWithDebInfo",
782         };
783
784         cfg.out_dir(&out_dir)
785             .profile(profile)
786             .env("LLVM_CONFIG_REAL", &llvm_config)
787             .define("LLVM_CONFIG_PATH", llvm_config_shim)
788             .define("LLVM_INCLUDE_TESTS", "OFF");
789
790         if builder.config.llvm_allow_old_toolchain {
791             cfg.define("LLVM_TEMPORARILY_ALLOW_OLD_TOOLCHAIN", "YES");
792         }
793
794         // While we're using this horrible workaround to shim the execution of
795         // llvm-config, let's just pile on more. I can't seem to figure out how
796         // to build LLD as a standalone project and also cross-compile it at the
797         // same time. It wants a natively executable `llvm-config` to learn
798         // about LLVM, but then it learns about all the host configuration of
799         // LLVM and tries to link to host LLVM libraries.
800         //
801         // To work around that we tell our shim to replace anything with the
802         // build target with the actual target instead. This'll break parts of
803         // LLD though which try to execute host tools, such as llvm-tblgen, so
804         // we specifically tell it where to find those. This is likely super
805         // brittle and will break over time. If anyone knows better how to
806         // cross-compile LLD it would be much appreciated to fix this!
807         if target != builder.config.build {
808             cfg.env("LLVM_CONFIG_SHIM_REPLACE", &builder.config.build.triple)
809                 .env("LLVM_CONFIG_SHIM_REPLACE_WITH", &target.triple)
810                 .define(
811                     "LLVM_TABLEGEN_EXE",
812                     llvm_config.with_file_name("llvm-tblgen").with_extension(EXE_EXTENSION),
813                 );
814         }
815
816         // Explicitly set C++ standard, because upstream doesn't do so
817         // for standalone builds.
818         cfg.define("CMAKE_CXX_STANDARD", "14");
819
820         cfg.build();
821
822         t!(File::create(&done_stamp));
823         out_dir
824     }
825 }
826
827 #[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
828 pub struct TestHelpers {
829     pub target: TargetSelection,
830 }
831
832 impl Step for TestHelpers {
833     type Output = ();
834
835     fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
836         run.path("src/test/auxiliary/rust_test_helpers.c")
837     }
838
839     fn make_run(run: RunConfig<'_>) {
840         run.builder.ensure(TestHelpers { target: run.target })
841     }
842
843     /// Compiles the `rust_test_helpers.c` library which we used in various
844     /// `run-pass` tests for ABI testing.
845     fn run(self, builder: &Builder<'_>) {
846         if builder.config.dry_run {
847             return;
848         }
849         // The x86_64-fortanix-unknown-sgx target doesn't have a working C
850         // toolchain. However, some x86_64 ELF objects can be linked
851         // without issues. Use this hack to compile the test helpers.
852         let target = if self.target == "x86_64-fortanix-unknown-sgx" {
853             TargetSelection::from_user("x86_64-unknown-linux-gnu")
854         } else {
855             self.target
856         };
857         let dst = builder.test_helpers_out(target);
858         let src = builder.src.join("src/test/auxiliary/rust_test_helpers.c");
859         if up_to_date(&src, &dst.join("librust_test_helpers.a")) {
860             return;
861         }
862
863         builder.info("Building test helpers");
864         t!(fs::create_dir_all(&dst));
865         let mut cfg = cc::Build::new();
866         // FIXME: Workaround for https://github.com/emscripten-core/emscripten/issues/9013
867         if target.contains("emscripten") {
868             cfg.pic(false);
869         }
870
871         // We may have found various cross-compilers a little differently due to our
872         // extra configuration, so inform cc of these compilers. Note, though, that
873         // on MSVC we still need cc's detection of env vars (ugh).
874         if !target.contains("msvc") {
875             if let Some(ar) = builder.ar(target) {
876                 cfg.archiver(ar);
877             }
878             cfg.compiler(builder.cc(target));
879         }
880         cfg.cargo_metadata(false)
881             .out_dir(&dst)
882             .target(&target.triple)
883             .host(&builder.config.build.triple)
884             .opt_level(0)
885             .warnings(false)
886             .debug(false)
887             .file(builder.src.join("src/test/auxiliary/rust_test_helpers.c"))
888             .compile("rust_test_helpers");
889     }
890 }
891
892 #[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
893 pub struct Sanitizers {
894     pub target: TargetSelection,
895 }
896
897 impl Step for Sanitizers {
898     type Output = Vec<SanitizerRuntime>;
899
900     fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
901         run.alias("sanitizers")
902     }
903
904     fn make_run(run: RunConfig<'_>) {
905         run.builder.ensure(Sanitizers { target: run.target });
906     }
907
908     /// Builds sanitizer runtime libraries.
909     fn run(self, builder: &Builder<'_>) -> Self::Output {
910         let compiler_rt_dir = builder.src.join("src/llvm-project/compiler-rt");
911         if !compiler_rt_dir.exists() {
912             return Vec::new();
913         }
914
915         let out_dir = builder.native_dir(self.target).join("sanitizers");
916         let runtimes = supported_sanitizers(&out_dir, self.target, &builder.config.channel);
917         if runtimes.is_empty() {
918             return runtimes;
919         }
920
921         let llvm_config = builder.ensure(Llvm { target: builder.config.build });
922         if builder.config.dry_run {
923             return runtimes;
924         }
925
926         let stamp = out_dir.join("sanitizers-finished-building");
927         let stamp = HashStamp::new(stamp, builder.in_tree_llvm_info.sha());
928
929         if stamp.is_done() {
930             if stamp.hash.is_none() {
931                 builder.info(&format!(
932                     "Rebuild sanitizers by removing the file `{}`",
933                     stamp.path.display()
934                 ));
935             }
936             return runtimes;
937         }
938
939         builder.info(&format!("Building sanitizers for {}", self.target));
940         t!(stamp.remove());
941         let _time = util::timeit(&builder);
942
943         let mut cfg = cmake::Config::new(&compiler_rt_dir);
944         cfg.profile("Release");
945         cfg.define("CMAKE_C_COMPILER_TARGET", self.target.triple);
946         cfg.define("COMPILER_RT_BUILD_BUILTINS", "OFF");
947         cfg.define("COMPILER_RT_BUILD_CRT", "OFF");
948         cfg.define("COMPILER_RT_BUILD_LIBFUZZER", "OFF");
949         cfg.define("COMPILER_RT_BUILD_PROFILE", "OFF");
950         cfg.define("COMPILER_RT_BUILD_SANITIZERS", "ON");
951         cfg.define("COMPILER_RT_BUILD_XRAY", "OFF");
952         cfg.define("COMPILER_RT_DEFAULT_TARGET_ONLY", "ON");
953         cfg.define("COMPILER_RT_USE_LIBCXX", "OFF");
954         cfg.define("LLVM_CONFIG_PATH", &llvm_config);
955
956         // On Darwin targets the sanitizer runtimes are build as universal binaries.
957         // Unfortunately sccache currently lacks support to build them successfully.
958         // Disable compiler launcher on Darwin targets to avoid potential issues.
959         let use_compiler_launcher = !self.target.contains("apple-darwin");
960         configure_cmake(builder, self.target, &mut cfg, use_compiler_launcher, LdFlags::default());
961
962         t!(fs::create_dir_all(&out_dir));
963         cfg.out_dir(out_dir);
964
965         for runtime in &runtimes {
966             cfg.build_target(&runtime.cmake_target);
967             cfg.build();
968         }
969         t!(stamp.write());
970
971         runtimes
972     }
973 }
974
975 #[derive(Clone, Debug)]
976 pub struct SanitizerRuntime {
977     /// CMake target used to build the runtime.
978     pub cmake_target: String,
979     /// Path to the built runtime library.
980     pub path: PathBuf,
981     /// Library filename that will be used rustc.
982     pub name: String,
983 }
984
985 /// Returns sanitizers available on a given target.
986 fn supported_sanitizers(
987     out_dir: &Path,
988     target: TargetSelection,
989     channel: &str,
990 ) -> Vec<SanitizerRuntime> {
991     let darwin_libs = |os: &str, components: &[&str]| -> Vec<SanitizerRuntime> {
992         components
993             .iter()
994             .map(move |c| SanitizerRuntime {
995                 cmake_target: format!("clang_rt.{}_{}_dynamic", c, os),
996                 path: out_dir
997                     .join(&format!("build/lib/darwin/libclang_rt.{}_{}_dynamic.dylib", c, os)),
998                 name: format!("librustc-{}_rt.{}.dylib", channel, c),
999             })
1000             .collect()
1001     };
1002
1003     let common_libs = |os: &str, arch: &str, components: &[&str]| -> Vec<SanitizerRuntime> {
1004         components
1005             .iter()
1006             .map(move |c| SanitizerRuntime {
1007                 cmake_target: format!("clang_rt.{}-{}", c, arch),
1008                 path: out_dir.join(&format!("build/lib/{}/libclang_rt.{}-{}.a", os, c, arch)),
1009                 name: format!("librustc-{}_rt.{}.a", channel, c),
1010             })
1011             .collect()
1012     };
1013
1014     match &*target.triple {
1015         "aarch64-apple-darwin" => darwin_libs("osx", &["asan", "lsan", "tsan"]),
1016         "aarch64-fuchsia" => common_libs("fuchsia", "aarch64", &["asan"]),
1017         "aarch64-unknown-linux-gnu" => {
1018             common_libs("linux", "aarch64", &["asan", "lsan", "msan", "tsan", "hwasan"])
1019         }
1020         "x86_64-apple-darwin" => darwin_libs("osx", &["asan", "lsan", "tsan"]),
1021         "x86_64-fuchsia" => common_libs("fuchsia", "x86_64", &["asan"]),
1022         "x86_64-unknown-freebsd" => common_libs("freebsd", "x86_64", &["asan", "msan", "tsan"]),
1023         "x86_64-unknown-netbsd" => {
1024             common_libs("netbsd", "x86_64", &["asan", "lsan", "msan", "tsan"])
1025         }
1026         "x86_64-unknown-illumos" => common_libs("illumos", "x86_64", &["asan"]),
1027         "x86_64-pc-solaris" => common_libs("solaris", "x86_64", &["asan"]),
1028         "x86_64-unknown-linux-gnu" => {
1029             common_libs("linux", "x86_64", &["asan", "lsan", "msan", "tsan"])
1030         }
1031         "x86_64-unknown-linux-musl" => {
1032             common_libs("linux", "x86_64", &["asan", "lsan", "msan", "tsan"])
1033         }
1034         _ => Vec::new(),
1035     }
1036 }
1037
1038 struct HashStamp {
1039     path: PathBuf,
1040     hash: Option<Vec<u8>>,
1041 }
1042
1043 impl HashStamp {
1044     fn new(path: PathBuf, hash: Option<&str>) -> Self {
1045         HashStamp { path, hash: hash.map(|s| s.as_bytes().to_owned()) }
1046     }
1047
1048     fn is_done(&self) -> bool {
1049         match fs::read(&self.path) {
1050             Ok(h) => self.hash.as_deref().unwrap_or(b"") == h.as_slice(),
1051             Err(e) if e.kind() == io::ErrorKind::NotFound => false,
1052             Err(e) => {
1053                 panic!("failed to read stamp file `{}`: {}", self.path.display(), e);
1054             }
1055         }
1056     }
1057
1058     fn remove(&self) -> io::Result<()> {
1059         match fs::remove_file(&self.path) {
1060             Ok(()) => Ok(()),
1061             Err(e) => {
1062                 if e.kind() == io::ErrorKind::NotFound {
1063                     Ok(())
1064                 } else {
1065                     Err(e)
1066                 }
1067             }
1068         }
1069     }
1070
1071     fn write(&self) -> io::Result<()> {
1072         fs::write(&self.path, self.hash.as_deref().unwrap_or(b""))
1073     }
1074 }
1075
1076 #[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
1077 pub struct CrtBeginEnd {
1078     pub target: TargetSelection,
1079 }
1080
1081 impl Step for CrtBeginEnd {
1082     type Output = PathBuf;
1083
1084     fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
1085         run.path("src/llvm-project/compiler-rt/lib/crt")
1086     }
1087
1088     fn make_run(run: RunConfig<'_>) {
1089         run.builder.ensure(CrtBeginEnd { target: run.target });
1090     }
1091
1092     /// Build crtbegin.o/crtend.o for musl target.
1093     fn run(self, builder: &Builder<'_>) -> Self::Output {
1094         let out_dir = builder.native_dir(self.target).join("crt");
1095
1096         if builder.config.dry_run {
1097             return out_dir;
1098         }
1099
1100         let crtbegin_src = builder.src.join("src/llvm-project/compiler-rt/lib/crt/crtbegin.c");
1101         let crtend_src = builder.src.join("src/llvm-project/compiler-rt/lib/crt/crtend.c");
1102         if up_to_date(&crtbegin_src, &out_dir.join("crtbegin.o"))
1103             && up_to_date(&crtend_src, &out_dir.join("crtendS.o"))
1104         {
1105             return out_dir;
1106         }
1107
1108         builder.info("Building crtbegin.o and crtend.o");
1109         t!(fs::create_dir_all(&out_dir));
1110
1111         let mut cfg = cc::Build::new();
1112
1113         if let Some(ar) = builder.ar(self.target) {
1114             cfg.archiver(ar);
1115         }
1116         cfg.compiler(builder.cc(self.target));
1117         cfg.cargo_metadata(false)
1118             .out_dir(&out_dir)
1119             .target(&self.target.triple)
1120             .host(&builder.config.build.triple)
1121             .warnings(false)
1122             .debug(false)
1123             .opt_level(3)
1124             .file(crtbegin_src)
1125             .file(crtend_src);
1126
1127         // Those flags are defined in src/llvm-project/compiler-rt/lib/crt/CMakeLists.txt
1128         // Currently only consumer of those objects is musl, which use .init_array/.fini_array
1129         // instead of .ctors/.dtors
1130         cfg.flag("-std=c11")
1131             .define("CRT_HAS_INITFINI_ARRAY", None)
1132             .define("EH_USE_FRAME_REGISTRY", None);
1133
1134         cfg.compile("crt");
1135
1136         t!(fs::copy(out_dir.join("crtbegin.o"), out_dir.join("crtbeginS.o")));
1137         t!(fs::copy(out_dir.join("crtend.o"), out_dir.join("crtendS.o")));
1138         out_dir
1139     }
1140 }
1141
1142 #[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
1143 pub struct Libunwind {
1144     pub target: TargetSelection,
1145 }
1146
1147 impl Step for Libunwind {
1148     type Output = PathBuf;
1149
1150     fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
1151         run.path("src/llvm-project/libunwind")
1152     }
1153
1154     fn make_run(run: RunConfig<'_>) {
1155         run.builder.ensure(Libunwind { target: run.target });
1156     }
1157
1158     /// Build linunwind.a
1159     fn run(self, builder: &Builder<'_>) -> Self::Output {
1160         if builder.config.dry_run {
1161             return PathBuf::new();
1162         }
1163
1164         let out_dir = builder.native_dir(self.target).join("libunwind");
1165         let root = builder.src.join("src/llvm-project/libunwind");
1166
1167         if up_to_date(&root, &out_dir.join("libunwind.a")) {
1168             return out_dir;
1169         }
1170
1171         builder.info(&format!("Building libunwind.a for {}", self.target.triple));
1172         t!(fs::create_dir_all(&out_dir));
1173
1174         let mut cc_cfg = cc::Build::new();
1175         let mut cpp_cfg = cc::Build::new();
1176
1177         cpp_cfg.cpp(true);
1178         cpp_cfg.cpp_set_stdlib(None);
1179         cpp_cfg.flag("-nostdinc++");
1180         cpp_cfg.flag("-fno-exceptions");
1181         cpp_cfg.flag("-fno-rtti");
1182         cpp_cfg.flag_if_supported("-fvisibility-global-new-delete-hidden");
1183
1184         for cfg in [&mut cc_cfg, &mut cpp_cfg].iter_mut() {
1185             if let Some(ar) = builder.ar(self.target) {
1186                 cfg.archiver(ar);
1187             }
1188             cfg.target(&self.target.triple);
1189             cfg.host(&builder.config.build.triple);
1190             cfg.warnings(false);
1191             cfg.debug(false);
1192             // get_compiler() need set opt_level first.
1193             cfg.opt_level(3);
1194             cfg.flag("-fstrict-aliasing");
1195             cfg.flag("-funwind-tables");
1196             cfg.flag("-fvisibility=hidden");
1197             cfg.define("_LIBUNWIND_DISABLE_VISIBILITY_ANNOTATIONS", None);
1198             cfg.include(root.join("include"));
1199             cfg.cargo_metadata(false);
1200             cfg.out_dir(&out_dir);
1201
1202             if self.target.contains("x86_64-fortanix-unknown-sgx") {
1203                 cfg.static_flag(true);
1204                 cfg.flag("-fno-stack-protector");
1205                 cfg.flag("-ffreestanding");
1206                 cfg.flag("-fexceptions");
1207
1208                 // easiest way to undefine since no API available in cc::Build to undefine
1209                 cfg.flag("-U_FORTIFY_SOURCE");
1210                 cfg.define("_FORTIFY_SOURCE", "0");
1211                 cfg.define("RUST_SGX", "1");
1212                 cfg.define("__NO_STRING_INLINES", None);
1213                 cfg.define("__NO_MATH_INLINES", None);
1214                 cfg.define("_LIBUNWIND_IS_BAREMETAL", None);
1215                 cfg.define("__LIBUNWIND_IS_NATIVE_ONLY", None);
1216                 cfg.define("NDEBUG", None);
1217             }
1218             if self.target.contains("windows") {
1219                 cfg.define("_LIBUNWIND_HIDE_SYMBOLS", "1");
1220                 cfg.define("_LIBUNWIND_IS_NATIVE_ONLY", "1");
1221             }
1222         }
1223
1224         cc_cfg.compiler(builder.cc(self.target));
1225         if let Ok(cxx) = builder.cxx(self.target) {
1226             cpp_cfg.compiler(cxx);
1227         } else {
1228             cc_cfg.compiler(builder.cc(self.target));
1229         }
1230
1231         // Don't set this for clang
1232         // By default, Clang builds C code in GNU C17 mode.
1233         // By default, Clang builds C++ code according to the C++98 standard,
1234         // with many C++11 features accepted as extensions.
1235         if cc_cfg.get_compiler().is_like_gnu() {
1236             cc_cfg.flag("-std=c99");
1237         }
1238         if cpp_cfg.get_compiler().is_like_gnu() {
1239             cpp_cfg.flag("-std=c++11");
1240         }
1241
1242         if self.target.contains("x86_64-fortanix-unknown-sgx") || self.target.contains("musl") {
1243             // use the same GCC C compiler command to compile C++ code so we do not need to setup the
1244             // C++ compiler env variables on the builders.
1245             // Don't set this for clang++, as clang++ is able to compile this without libc++.
1246             if cpp_cfg.get_compiler().is_like_gnu() {
1247                 cpp_cfg.cpp(false);
1248                 cpp_cfg.compiler(builder.cc(self.target));
1249             }
1250         }
1251
1252         let mut c_sources = vec![
1253             "Unwind-sjlj.c",
1254             "UnwindLevel1-gcc-ext.c",
1255             "UnwindLevel1.c",
1256             "UnwindRegistersRestore.S",
1257             "UnwindRegistersSave.S",
1258         ];
1259
1260         let cpp_sources = vec!["Unwind-EHABI.cpp", "Unwind-seh.cpp", "libunwind.cpp"];
1261         let cpp_len = cpp_sources.len();
1262
1263         if self.target.contains("x86_64-fortanix-unknown-sgx") {
1264             c_sources.push("UnwindRustSgx.c");
1265         }
1266
1267         for src in c_sources {
1268             cc_cfg.file(root.join("src").join(src).canonicalize().unwrap());
1269         }
1270
1271         for src in &cpp_sources {
1272             cpp_cfg.file(root.join("src").join(src).canonicalize().unwrap());
1273         }
1274
1275         cpp_cfg.compile("unwind-cpp");
1276
1277         // FIXME: https://github.com/alexcrichton/cc-rs/issues/545#issuecomment-679242845
1278         let mut count = 0;
1279         for entry in fs::read_dir(&out_dir).unwrap() {
1280             let file = entry.unwrap().path().canonicalize().unwrap();
1281             if file.is_file() && file.extension() == Some(OsStr::new("o")) {
1282                 // file name starts with "Unwind-EHABI", "Unwind-seh" or "libunwind"
1283                 let file_name = file.file_name().unwrap().to_str().expect("UTF-8 file name");
1284                 if cpp_sources.iter().any(|f| file_name.starts_with(&f[..f.len() - 4])) {
1285                     cc_cfg.object(&file);
1286                     count += 1;
1287                 }
1288             }
1289         }
1290         assert_eq!(cpp_len, count, "Can't get object files from {:?}", &out_dir);
1291
1292         cc_cfg.compile("unwind");
1293         out_dir
1294     }
1295 }