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 37898d0 commit 56dbedbCopy full SHA for 56dbedb
src/compiler/c.rs
@@ -410,6 +410,7 @@ where
410
}
411
412
let use_preprocessor_cache_mode = {
413
+ // Disable preprocessor cache when doing distributed compilation (+ other conditions)
414
let can_use_preprocessor_cache_mode = !may_dist
415
&& preprocessor_cache_mode_config.use_preprocessor_cache_mode
416
&& !too_hard_for_preprocessor_cache_mode;
@@ -438,7 +439,6 @@ where
438
439
use_preprocessor_cache_mode
440
};
441
- // Disable preprocessor cache when doing distributed compilation
442
let mut preprocessor_key = if use_preprocessor_cache_mode {
443
preprocessor_cache_entry_hash_key(
444
&executable_digest,
0 commit comments