2011-06-17 14:32:41 -05:00
|
|
|
stage2/lib/$(CFG_STDLIB): $(STDLIB_CRATE) $(STDLIB_INPUTS) \
|
|
|
|
stage2/rustc$(X) stage1/lib/$(CFG_STDLIB) stage2/intrinsics.bc \
|
2011-06-16 14:18:15 -05:00
|
|
|
stage2/glue.o $(LREQ) $(MKFILES)
|
2011-06-15 18:40:22 -05:00
|
|
|
@$(call E, compile_and_link: $@)
|
|
|
|
$(STAGE2) --shared -o $@ $<
|
2011-05-01 15:18:52 -05:00
|
|
|
|
2011-06-28 14:20:43 -05:00
|
|
|
stage2/lib/glue.o: stage2/rustc$(X) stage1/lib/$(CFG_STDLIB) \
|
|
|
|
stage2/intrinsics.bc rustllvm/$(CFG_RUSTLLVM) rt/$(CFG_RUNTIME)
|
2011-05-01 15:18:52 -05:00
|
|
|
@$(call E, generate: $@)
|
2011-06-15 18:40:22 -05:00
|
|
|
$(STAGE2) -c -o $@ --glue
|
2011-05-01 15:18:52 -05:00
|
|
|
|
2011-06-28 14:20:43 -05:00
|
|
|
stage2/glue.o: stage2/lib/glue.o
|
|
|
|
cp stage2/lib/glue.o stage2/glue.o
|
|
|
|
|
2011-05-04 20:28:30 -05:00
|
|
|
stage2/intrinsics.bc: $(INTRINSICS_BC)
|
|
|
|
@$(call E, cp: $@)
|
|
|
|
$(Q)cp $< $@
|
|
|
|
|
2011-05-01 15:18:52 -05:00
|
|
|
# Due to make not wanting to run the same implicit rules twice on the same
|
|
|
|
# rule tree (implicit-rule recursion prevention, see "Chains of Implicit
|
|
|
|
# Rules" in GNU Make manual) we have to re-state the %.o and %.s patterns here
|
|
|
|
# for different directories, to handle cases where (say) a test relies on a
|
|
|
|
# compiler that relies on a .o file.
|
|
|
|
|
|
|
|
stage2/%.o: stage2/%.s
|
|
|
|
@$(call E, assemble [gcc]: $@)
|
2011-05-08 23:10:04 -05:00
|
|
|
$(Q)gcc $(CFG_GCCISH_CFLAGS) -o $@ -c $<
|
2011-05-01 15:18:52 -05:00
|
|
|
|
2011-06-16 14:49:12 -05:00
|
|
|
stage2/%$(X): $(COMPILER_CRATE) $(COMPILER_INPUTS) $(SREQ1) stage1/intrinsics.bc
|
2011-06-15 18:40:22 -05:00
|
|
|
@$(call E, compile_and_link: $@)
|
|
|
|
$(STAGE1) -o $@ $<
|