We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 012dceb commit 813a962Copy full SHA for 813a962
build.rs
@@ -40,8 +40,8 @@ fn main() {
40
println!("cargo:rustc-cfg=libc_deny_warnings");
41
}
42
43
- // Rust > 1.13 supports long array:
44
- if rustc_minor_ver > 13 || rustc_dep_of_std {
+ // Rust >= 1.14 supports long array:
+ if rustc_minor_ver >= 14 || rustc_dep_of_std {
45
println!("cargo:rustc-cfg=libc_long_array");
46
47
0 commit comments