Also copy rt and rustllvm to stage0 for now
Once we've updated the snapshots to include them we can remove these rules
This commit is contained in:
parent
984caa3d26
commit
2c234fdc97
13
mk/stage0.mk
13
mk/stage0.mk
@ -1,4 +1,15 @@
|
||||
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
|
||||
# that begins including them
|
||||
stage0/lib/$(CFG_RUNTIME): rt/$(CFG_RUNTIME)
|
||||
@$(call E, cp: $@)
|
||||
$(Q)cp $< $@
|
||||
|
||||
stage0/lib/$(CFG_RUSTLLVM): rustllvm/$(CFG_RUSTLLVM)
|
||||
@$(call E, cp: $@)
|
||||
$(Q)cp $< $@
|
||||
|
||||
stage0/rustc$(X): $(S)src/snapshots.txt $(S)src/etc/get-snapshot.py $(MKFILES) \
|
||||
stage0/lib/$(CFG_RUNTIME) stage0/lib/$(CFG_RUSTLLVM)
|
||||
@$(call E, fetch: $@)
|
||||
$(Q)$(S)src/etc/get-snapshot.py
|
||||
$(Q)touch $@
|
||||
|
Loading…
Reference in New Issue
Block a user