]> git.lizzy.rs Git - rust.git/blob - src/libprofiler_builtins/build.rs
Auto merge of #61210 - Centril:rollup-ofr6h5b, r=Centril
[rust.git] / src / libprofiler_builtins / build.rs
1 //! Compiles the profiler part of the `compiler-rt` library.
2 //!
3 //! See the build.rs for libcompiler_builtins crate for details.
4
5 use std::env;
6 use std::path::Path;
7
8 fn main() {
9     let target = env::var("TARGET").expect("TARGET was not set");
10     let cfg = &mut cc::Build::new();
11
12     let mut profile_sources = vec!["GCDAProfiling.c",
13                                    "InstrProfiling.c",
14                                    "InstrProfilingBuffer.c",
15                                    "InstrProfilingFile.c",
16                                    "InstrProfilingMerge.c",
17                                    "InstrProfilingMergeFile.c",
18                                    "InstrProfilingNameVar.c",
19                                    "InstrProfilingPlatformDarwin.c",
20                                    "InstrProfilingPlatformLinux.c",
21                                    "InstrProfilingPlatformOther.c",
22                                    "InstrProfilingRuntime.cc",
23                                    "InstrProfilingUtil.c",
24                                    "InstrProfilingValue.c",
25                                    "InstrProfilingWriter.c"];
26
27     if target.contains("msvc") {
28         // Don't pull in extra libraries on MSVC
29         cfg.flag("/Zl");
30         profile_sources.push("WindowsMMap.c");
31         cfg.define("strdup", Some("_strdup"));
32         cfg.define("open", Some("_open"));
33         cfg.define("fdopen", Some("_fdopen"));
34         cfg.define("getpid", Some("_getpid"));
35         cfg.define("fileno", Some("_fileno"));
36     } else {
37         // Turn off various features of gcc and such, mostly copying
38         // compiler-rt's build system already
39         cfg.flag("-fno-builtin");
40         cfg.flag("-fvisibility=hidden");
41         cfg.flag("-fomit-frame-pointer");
42         cfg.flag("-ffreestanding");
43         cfg.define("VISIBILITY_HIDDEN", None);
44         if !target.contains("windows") {
45             cfg.define("COMPILER_RT_HAS_UNAME", Some("1"));
46         } else {
47             profile_sources.push("WindowsMMap.c");
48         }
49     }
50
51     // Assume that the Unixes we are building this for have fnctl() available
52     if env::var_os("CARGO_CFG_UNIX").is_some() {
53         cfg.define("COMPILER_RT_HAS_FCNTL_LCK", Some("1"));
54     }
55
56     // This should be a pretty good heuristic for when to set
57     // COMPILER_RT_HAS_ATOMICS
58     if env::var_os("CARGO_CFG_TARGET_HAS_ATOMIC").map(|features| {
59         features.to_string_lossy().to_lowercase().contains("cas")
60     }).unwrap_or(false) {
61         cfg.define("COMPILER_RT_HAS_ATOMICS", Some("1"));
62     }
63
64     let root = env::var_os("RUST_COMPILER_RT_ROOT").unwrap();
65     let root = Path::new(&root);
66
67     for src in profile_sources {
68         cfg.file(root.join("lib").join("profile").join(src));
69     }
70
71     cfg.warnings(false);
72     cfg.compile("profiler-rt");
73 }