Vendor things
This commit is contained in:
parent
5deceec006
commit
977e3c17e5
19434 changed files with 10682014 additions and 0 deletions
22
third-party/vendor/memoffset/build.rs
vendored
Normal file
22
third-party/vendor/memoffset/build.rs
vendored
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
extern crate autocfg;
|
||||
|
||||
fn main() {
|
||||
let ac = autocfg::new();
|
||||
|
||||
// Check for a minimum version for a few features
|
||||
if ac.probe_rustc_version(1, 20) {
|
||||
println!("cargo:rustc-cfg=tuple_ty");
|
||||
}
|
||||
if ac.probe_rustc_version(1, 31) {
|
||||
println!("cargo:rustc-cfg=allow_clippy");
|
||||
}
|
||||
if ac.probe_rustc_version(1, 36) {
|
||||
println!("cargo:rustc-cfg=maybe_uninit");
|
||||
}
|
||||
if ac.probe_rustc_version(1, 40) {
|
||||
println!("cargo:rustc-cfg=doctests");
|
||||
}
|
||||
if ac.probe_rustc_version(1, 51) {
|
||||
println!("cargo:rustc-cfg=raw_ref_macros");
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue