We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 984caa3 commit 2c234fdCopy full SHA for 2c234fd
mk/stage0.mk
@@ -1,4 +1,15 @@
1
-stage0/rustc$(X): $(S)src/snapshots.txt $(S)src/etc/get-snapshot.py $(MKFILES)
+# FIXME: Copying rt and rustllvm to stage0 is transitional until the snapshot
2
+# that begins including them
3
+stage0/lib/$(CFG_RUNTIME): rt/$(CFG_RUNTIME)
4
+ @$(call E, cp: $@)
5
+ $(Q)cp $< $@
6
+
7
+stage0/lib/$(CFG_RUSTLLVM): rustllvm/$(CFG_RUSTLLVM)
8
9
10
11
+stage0/rustc$(X): $(S)src/snapshots.txt $(S)src/etc/get-snapshot.py $(MKFILES) \
12
+ stage0/lib/$(CFG_RUNTIME) stage0/lib/$(CFG_RUSTLLVM)
13
@$(call E, fetch: $@)
14
$(Q)$(S)src/etc/get-snapshot.py
15
$(Q)touch $@
0 commit comments