blob: b093a37f7b68e204cfe083ae0956230332e32bd3 [file] [log] [blame]
David Tolnay17eb0702019-01-05 12:23:17 -08001// rustc-cfg emitted by the build script:
2//
David Tolnay17eb0702019-01-05 12:23:17 -08003// "use_proc_macro"
4// Link to extern crate proc_macro. Available on any compiler and any target
5// except wasm32. Requires "proc-macro" Cargo cfg to be enabled (default is
6// enabled). On wasm32 we never link to proc_macro even if "proc-macro" cfg
7// is enabled.
8//
9// "wrap_proc_macro"
10// Wrap types from libproc_macro rather than polyfilling the whole API.
11// Enabled on rustc 1.29+ as long as procmacro2_semver_exempt is not set,
12// because we can't emulate the unstable API without emulating everything
13// else. Also enabled unconditionally on nightly, in which case the
14// procmacro2_semver_exempt surface area is implemented by using the
15// nightly-only proc_macro API.
16//
David Tolnayb455dd72019-04-28 13:50:51 -070017// "proc_macro_span"
18// Enable non-dummy behavior of Span::start and Span::end methods which
19// requires an unstable compiler feature. Enabled when building with
20// nightly, unless `-Z allow-feature` in RUSTFLAGS disallows unstable
21// features.
Wim Looman099db2a2019-04-28 11:55:09 +020022//
David Tolnay17eb0702019-01-05 12:23:17 -080023// "super_unstable"
24// Implement the semver exempt API in terms of the nightly-only proc_macro
25// API. Enabled when using procmacro2_semver_exempt on a nightly compiler.
David Tolnay3b1f7d22019-01-28 12:22:11 -080026//
27// "span_locations"
28// Provide methods Span::start and Span::end which give the line/column
29// location of a token. Enabled by procmacro2_semver_exempt or the
30// "span-locations" Cargo cfg. This is behind a cfg because tracking
31// location inside spans is a performance hit.
David Tolnay17eb0702019-01-05 12:23:17 -080032
Alex Crichton53548482018-08-11 21:54:05 -070033use std::env;
Alex Crichtonce0904d2018-08-27 17:29:49 -070034use std::process::Command;
35use std::str;
Alex Crichton53548482018-08-11 21:54:05 -070036
37fn main() {
38 println!("cargo:rerun-if-changed=build.rs");
39
40 let target = env::var("TARGET").unwrap();
41
David Tolnay17eb0702019-01-05 12:23:17 -080042 let version = match rustc_version() {
43 Some(version) => version,
Alex Crichtonce0904d2018-08-27 17:29:49 -070044 None => return,
45 };
46
David Tolnay17eb0702019-01-05 12:23:17 -080047 let semver_exempt = cfg!(procmacro2_semver_exempt);
48 if semver_exempt {
49 // https://github.com/alexcrichton/proc-macro2/issues/147
50 println!("cargo:rustc-cfg=procmacro2_semver_exempt");
David Tolnaye839e4f2018-09-06 09:36:43 -070051 }
52
David Tolnay3b1f7d22019-01-28 12:22:11 -080053 if semver_exempt || cfg!(feature = "span-locations") {
54 println!("cargo:rustc-cfg=span_locations");
55 }
56
57 if !enable_use_proc_macro(&target) {
58 return;
59 }
60
61 println!("cargo:rustc-cfg=use_proc_macro");
62
David Tolnayd7dc1462019-07-19 11:48:47 -070063 if version.nightly || !semver_exempt {
David Tolnay17eb0702019-01-05 12:23:17 -080064 println!("cargo:rustc-cfg=wrap_proc_macro");
65 }
66
David Tolnayce12a482019-04-28 13:56:13 -070067 if version.nightly && feature_allowed("proc_macro_span") {
David Tolnayb455dd72019-04-28 13:50:51 -070068 println!("cargo:rustc-cfg=proc_macro_span");
David Tolnay17eb0702019-01-05 12:23:17 -080069 }
70
71 if semver_exempt && version.nightly {
72 println!("cargo:rustc-cfg=super_unstable");
73 }
Alex Crichton53548482018-08-11 21:54:05 -070074}
75
Alex Crichtonce0904d2018-08-27 17:29:49 -070076fn enable_use_proc_macro(target: &str) -> bool {
Alex Crichton53548482018-08-11 21:54:05 -070077 // wasm targets don't have the `proc_macro` crate, disable this feature.
78 if target.contains("wasm32") {
Alex Crichtonce0904d2018-08-27 17:29:49 -070079 return false;
Alex Crichton53548482018-08-11 21:54:05 -070080 }
81
Alex Crichton53548482018-08-11 21:54:05 -070082 // Otherwise, only enable it if our feature is actually enabled.
Alex Crichtonce0904d2018-08-27 17:29:49 -070083 cfg!(feature = "proc-macro")
84}
85
David Tolnay17eb0702019-01-05 12:23:17 -080086struct RustcVersion {
David Tolnay17eb0702019-01-05 12:23:17 -080087 nightly: bool,
88}
89
90fn rustc_version() -> Option<RustcVersion> {
Alex Crichtonce0904d2018-08-27 17:29:49 -070091 macro_rules! otry {
David Tolnay2ff99ce2018-09-01 09:40:51 -070092 ($e:expr) => {
93 match $e {
94 Some(e) => e,
95 None => return None,
96 }
97 };
Alex Crichton53548482018-08-11 21:54:05 -070098 }
David Tolnay17eb0702019-01-05 12:23:17 -080099
Alex Crichtonce0904d2018-08-27 17:29:49 -0700100 let rustc = otry!(env::var_os("RUSTC"));
101 let output = otry!(Command::new(rustc).arg("--version").output().ok());
102 let version = otry!(str::from_utf8(&output.stdout).ok());
David Tolnay17eb0702019-01-05 12:23:17 -0800103 let nightly = version.contains("nightly");
David Tolnay17eb0702019-01-05 12:23:17 -0800104
David Tolnayf0814122019-07-19 11:53:55 -0700105 Some(RustcVersion { nightly })
Alex Crichton53548482018-08-11 21:54:05 -0700106}
Wim Looman099db2a2019-04-28 11:55:09 +0200107
David Tolnayce12a482019-04-28 13:56:13 -0700108fn feature_allowed(feature: &str) -> bool {
109 // Recognized formats:
110 //
111 // -Z allow-features=feature1,feature2
112 //
113 // -Zallow-features=feature1,feature2
114
Wim Looman099db2a2019-04-28 11:55:09 +0200115 if let Some(rustflags) = env::var_os("RUSTFLAGS") {
David Tolnayce12a482019-04-28 13:56:13 -0700116 for mut flag in rustflags.to_string_lossy().split(' ') {
117 if flag.starts_with("-Z") {
118 flag = &flag["-Z".len()..];
119 }
120 if flag.starts_with("allow-features=") {
121 flag = &flag["allow-features=".len()..];
122 return flag.split(',').any(|allowed| allowed == feature);
Wim Looman099db2a2019-04-28 11:55:09 +0200123 }
124 }
125 }
David Tolnayce12a482019-04-28 13:56:13 -0700126
127 // No allow-features= flag, allowed by default.
128 true
Wim Looman099db2a2019-04-28 11:55:09 +0200129}