We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 62258b5 commit 7280206Copy full SHA for 7280206
build.rs
@@ -406,7 +406,9 @@ fn main() {
406
}
407
408
for src in sources.map.values() {
409
- 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);
410
+ cfg.file(&src);
411
+ println!("cargo:rerun-if-changed={}", src.display());
412
413
414
cfg.compile("libcompiler-rt.a");
0 commit comments