Add missing dependencies, stageN/glue.o gets linked into the stageN/libstd.so.

This commit is contained in:
Rafael Ávila de Espíndola 2011-06-16 15:18:15 -04:00
parent 219924e669
commit ad2ab4cfa6
3 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
stage1/$(CFG_STDLIB): $(STDLIB_CRATE) $(STDLIB_INPUTS) \
stage1/rustc$(X) stage0/$(CFG_STDLIB) stage1/intrinsics.bc \
$(LREQ) $(MKFILES)
stage1/glue.o $(LREQ) $(MKFILES)
@$(call E, compile_and_link: $@)
$(STAGE1) --shared -o $@ $<

View File

@ -1,6 +1,6 @@
stage2/$(CFG_STDLIB): $(STDLIB_CRATE) $(STDLIB_INPUTS) \
stage2/rustc$(X) stage1/$(CFG_STDLIB) stage2/intrinsics.bc \
$(LREQ) $(MKFILES)
stage2/glue.o $(LREQ) $(MKFILES)
@$(call E, compile_and_link: $@)
$(STAGE2) --shared -o $@ $<

View File

@ -1,6 +1,6 @@
stage3/$(CFG_STDLIB): $(STDLIB_CRATE) $(STDLIB_INPUTS) \
stage3/rustc$(X) stage2/$(CFG_STDLIB) stage3/intrinsics.bc \
$(LREQ) $(MKFILES)
stage3/glue.o $(LREQ) $(MKFILES)
@$(call E, compile_and_link: $@)
$(STAGE3) --shared -o $@ $<