We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 79034bd commit a672448Copy full SHA for a672448
compiler/rustc_codegen_ssa/src/back/command.rs
@@ -139,7 +139,7 @@ impl Command {
139
pub(crate) fn very_likely_to_exceed_some_spawn_limit(&self) -> bool {
140
// We mostly only care about Windows in this method, on Unix the limits
141
// can be gargantuan anyway so we're pretty unlikely to hit them
142
- if cfg!(unix) {
+ if cfg!(not(windows)) {
143
return false;
144
}
145
0 commit comments