-
-
Notifications
You must be signed in to change notification settings - Fork 89
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #202 from dtolnay/literal
Restore support for toolchains without $:literal matcher
- Loading branch information
Showing
2 changed files
with
70 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
use std::env; | ||
use std::process::Command; | ||
use std::str; | ||
|
||
// The rustc-cfg strings below are *not* public API. Please let us know by | ||
// opening a GitHub issue if your build environment requires some way to enable | ||
// these cfgs other than by executing our build script. | ||
fn main() { | ||
let minor = match rustc_minor_version() { | ||
Some(minor) => minor, | ||
None => return, | ||
}; | ||
|
||
// The $:literal matcher in macro_rules stabilized in 1.32: | ||
// https://blog.rust-lang.org/2019/01/17/Rust-1.32.0.html#macro-improvements | ||
if minor < 32 { | ||
println!("cargo:rustc-cfg=no_literal_matcher"); | ||
} | ||
} | ||
|
||
fn rustc_minor_version() -> Option<u32> { | ||
let rustc = env::var_os("RUSTC")?; | ||
let output = Command::new(rustc).arg("--version").output().ok()?; | ||
let version = str::from_utf8(&output.stdout).ok()?; | ||
let mut pieces = version.split('.'); | ||
if pieces.next() != Some("rustc 1") { | ||
return None; | ||
} | ||
pieces.next()?.parse().ok() | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters