mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
94f782e6a1
New snapshots also include rt and rustllvm
19 lines
436 B
Makefile
19 lines
436 B
Makefile
stage0/rustc$(X): $(S)src/snapshots.txt $(S)src/etc/get-snapshot.py $(MKFILES)
|
|
@$(call E, fetch: $@)
|
|
$(Q)$(S)src/etc/get-snapshot.py
|
|
$(Q)touch $@
|
|
|
|
# These two will be made in the process of making rustc above.
|
|
|
|
stage0/glue.o: stage0/rustc$(X)
|
|
$(Q)touch $@
|
|
|
|
stage0/lib/$(CFG_STDLIB): stage0/rustc$(X)
|
|
$(Q)touch $@
|
|
|
|
# TODO: Include as part of the snapshot.
|
|
stage0/intrinsics.bc: $(INTRINSICS_BC)
|
|
@$(call E, cp: $@)
|
|
$(Q)cp $< $@
|
|
|