We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 461c576 commit 7be36a8Copy full SHA for 7be36a8
src/libprofiler_builtins/build.rs
@@ -9,6 +9,8 @@ fn main() {
9
let target = env::var("TARGET").expect("TARGET was not set");
10
let cfg = &mut cc::Build::new();
11
12
+ // FIXME: `rerun-if-changed` directives are not currently emitted and the build script
13
+ // will not rerun on changes in these source files or headers included into them.
14
let mut profile_sources = vec![
15
"GCDAProfiling.c",
16
"InstrProfiling.c",
src/libstd/build.rs
@@ -1,6 +1,7 @@
1
use std::env;
2
3
fn main() {
4
+ println!("cargo:rerun-if-changed=build.rs");
5
6
if target.contains("linux") {
7
if target.contains("android") {
0 commit comments