Skip to content

Commit

Permalink
Fix is_flag_supported not respecting emit_rerun_if_env_changed (#1147) (
Browse files Browse the repository at this point in the history
  • Loading branch information
oconnor663 committed Jul 12, 2024
1 parent bd5a4ec commit c00b52f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -641,7 +641,8 @@ impl Build {
.host(&self.get_host()?)
.debug(false)
.cpp(self.cpp)
.cuda(self.cuda);
.cuda(self.cuda)
.emit_rerun_if_env_changed(self.emit_rerun_if_env_changed);
cfg.try_get_compiler()?
};

Expand Down

0 comments on commit c00b52f

Please sign in to comment.