We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 83bdc5f commit 04f7758Copy full SHA for 04f7758
build.rs
@@ -1,6 +1,4 @@
1
use std::env;
2
-use std::process::Command;
3
-use std::str::{self, FromStr};
4
5
fn main() {
6
println!("cargo:rerun-if-changed=build.rs");
@@ -16,21 +14,4 @@ fn main() {
16
14
println!("cargo:rustc-cfg=limb_width_32");
17
15
}
18
19
-
20
- let minor = match rustc_minor_version() {
21
- Some(minor) => minor,
22
- None => return,
23
- };
24
-}
25
26
-fn rustc_minor_version() -> Option<u32> {
27
- let rustc = env::var_os("RUSTC")?;
28
- let output = Command::new(rustc).arg("--version").output().ok()?;
29
- let version = str::from_utf8(&output.stdout).ok()?;
30
- let mut pieces = version.split('.');
31
- if pieces.next() != Some("rustc 1") {
32
- return None;
33
- }
34
- let next = pieces.next()?;
35
- u32::from_str(next).ok()
36
0 commit comments