diff options
author | 2020-01-13 02:41:43 +0100 | |
---|---|---|
committer | 2020-01-13 02:41:43 +0100 | |
commit | 6ac19a5ae74432b68a290dd79b18ce4ee09b20d4 (patch) | |
tree | 9da085c5a9623faeef8175184580625b47b5d2be | |
parent | 308312e980204e8f9b1086423bf88d306de6957f (diff) | |
download | cortex-m-6ac19a5ae74432b68a290dd79b18ce4ee09b20d4.tar.gz cortex-m-6ac19a5ae74432b68a290dd79b18ce4ee09b20d4.tar.zst cortex-m-6ac19a5ae74432b68a290dd79b18ce4ee09b20d4.zip |
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
-rw-r--r-- | build.rs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -25,7 +25,7 @@ fn main() { } else if target.starts_with("thumbv7em-") { println!("cargo:rustc-cfg=cortex_m"); println!("cargo:rustc-cfg=armv7m"); - //println!("cargo:rustc-cfg=armv7em"); + println!("cargo:rustc-cfg=armv7em"); // (not currently used) } else if target.starts_with("thumbv8m.base") { println!("cargo:rustc-cfg=cortex_m"); println!("cargo:rustc-cfg=armv8m"); |