Permalink
Cannot retrieve contributors at this time
Join GitHub today
GitHub is home to over 31 million developers working together to host and review code, manage projects, and build software together.
Sign up
Fetching contributors…
| /// | |
| /// This build script Checks if we can use #[deprecated] | |
| /// | |
| extern crate rustc_version; | |
| use rustc_version::Channel; | |
| const DEPRECATED_CFG: &'static str = "has_deprecated"; | |
| fn main() { | |
| let version = rustc_version::version_meta(); | |
| println!("cargo:rerun-if-changed=build.rs"); | |
| if version.channel == Channel::Nightly { | |
| if let Some(ref date) = version.commit_date { | |
| // parse year, month, day | |
| let ndate = date.splitn(3, "-") | |
| .map(str::parse) | |
| .collect::<Result<Vec<i32>, _>>().unwrap(); | |
| // deprecated is available from nightly 2015-12-18 | |
| if ndate >= vec![2015, 12, 18] { | |
| println!("cargo:rustc-cfg={}", DEPRECATED_CFG); | |
| } | |
| } | |
| } | |
| if cfg!(feature = "blas-openblas-sys") { | |
| println!("cargo:rustc-link-lib={}=openblas", "dylib"); | |
| } | |
| } |