Skip to content

Commit 6ac19a5

Browse files
Uncomment one println in build.rs
Even though this cfg isn't currently used, printing it doesn't hurt, and it avoids a Clippy lint
1 parent 308312e commit 6ac19a5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ fn main() {
2525
} else if target.starts_with("thumbv7em-") {
2626
println!("cargo:rustc-cfg=cortex_m");
2727
println!("cargo:rustc-cfg=armv7m");
28-
//println!("cargo:rustc-cfg=armv7em");
28+
println!("cargo:rustc-cfg=armv7em"); // (not currently used)
2929
} else if target.starts_with("thumbv8m.base") {
3030
println!("cargo:rustc-cfg=cortex_m");
3131
println!("cargo:rustc-cfg=armv8m");

0 commit comments

Comments
 (0)