We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a3f62bb + 98f1a24 commit b4fc245Copy full SHA for b4fc245
build.rs
@@ -3,6 +3,10 @@ use std::env;
3
fn main() {
4
println!("cargo:rerun-if-changed=build.rs");
5
6
+ println!("cargo:rustc-check-cfg=cfg(integer128)");
7
+ println!("cargo:rustc-check-cfg=cfg(limb_width_32)");
8
+ println!("cargo:rustc-check-cfg=cfg(limb_width_64)");
9
+
10
// Decide ideal limb width for arithmetic in the float parser. Refer to
11
// src/lexical/math.rs for where this has an effect.
12
let target_arch = env::var("CARGO_CFG_TARGET_ARCH").unwrap();
0 commit comments