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:
Brian Anderson 2011-07-07 15:08:31 -07:00
parent 984caa3d26
commit 2c234fdc97
1 changed files with 12 additions and 1 deletions

View File

@ -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 $@