build.rs: print rerun-if-change for all the C/asm sources
This commit is contained in:
parent
148ac030d4
commit
9a9f025347
1 changed files with 3 additions and 1 deletions
|
|
@ -406,7 +406,9 @@ fn main() {
|
|||
}
|
||||
|
||||
for src in sources.map.values() {
|
||||
cfg.file(Path::new("compiler-rt/compiler-rt-cdylib/compiler-rt/lib/builtins").join(src));
|
||||
let src = Path::new("compiler-rt/compiler-rt-cdylib/compiler-rt/lib/builtins").join(src);
|
||||
cfg.file(&src);
|
||||
println!("cargo:rerun-if-changed={}", src.display());
|
||||
}
|
||||
|
||||
cfg.compile("libcompiler-rt.a");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue