We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5caca6f commit 7007a44Copy full SHA for 7007a44
src/bootstrap/lib.rs
@@ -718,7 +718,7 @@ impl Build {
718
fn force_use_stage1(&self, compiler: Compiler, target: Interned<String>) -> bool {
719
!self.config.full_bootstrap &&
720
compiler.stage >= 2 &&
721
- self.hosts.iter().any(|h| *h == target)
+ (self.hosts.iter().any(|h| *h == target) || target == self.build)
722
}
723
724
/// Returns the directory that OpenSSL artifacts are compiled into if
0 commit comments