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 506522f commit 93a9ab1Copy full SHA for 93a9ab1
src/bootstrap/build/mod.rs
@@ -155,8 +155,7 @@ impl Build {
155
&compiler, host);
156
}
157
Rustc { stage: 0 } => {
158
- assert!(target.target == self.config.build,
159
- "only have one stage0 compiler");
+ // nothing to do...
160
161
Rustc { stage } => {
162
compile::assemble_rustc(self, stage, target.target);
src/bootstrap/build/step.rs
@@ -194,7 +194,6 @@ impl<'a> Step<'a> {
194
pub fn deps(&self, build: &'a Build) -> Vec<Step<'a>> {
195
match self.src {
196
Source::Rustc { stage: 0 } => {
197
- assert!(self.target == build.config.build);
198
Vec::new()
199
200
Source::Rustc { stage } => {
0 commit comments