Browse Source

Rerun the build script if the bin/{}.a archive has changed

Simon Sapin 2 năm trước cách đây
mục cha
commit
17e0aa2453
1 tập tin đã thay đổi với 3 bổ sung8 xóa
  1. 3 8
      riscv-rt/build.rs

+ 3 - 8
riscv-rt/build.rs

@@ -14,15 +14,10 @@ fn main() {
     if target.starts_with("riscv") {
         let mut target = Target::from_target_str(&target);
         target.retain_extensions("imfdc");
+        let archive = format!("bin/{}.a", target.to_string());
 
-        let target = target.to_string();
-
-        fs::copy(
-            format!("bin/{}.a", target),
-            out_dir.join(format!("lib{}.a", name)),
-        )
-        .unwrap();
-
+        fs::copy(&archive, out_dir.join(format!("lib{}.a", name))).unwrap();
+        println!("cargo:rerun-if-changed={}", archive);
         println!("cargo:rustc-link-lib=static={}", name);
     }