File tree 5 files changed +25
-4
lines changed
5 files changed +25
-4
lines changed Original file line number Diff line number Diff line change 1
1
---
2
- refs/heads/master: 0e2fff53375eba748b6d6727f69a2560f96bc8ec
2
+ refs/heads/master: e4407811642f87b5e2bcf0a75cef3a7baef88414
Original file line number Diff line number Diff line change 1
1
2
- snap-stage1 : stage1/rustc$(X ) stage1/glue.o stage1/lib/$(CFG_STDLIB )
2
+ snap-stage1 : stage1/rustc$(X ) stage1/glue.o stage1/lib/$(CFG_STDLIB ) \
3
+ stage1/lib/libstd.rlib
3
4
$(S ) src/etc/make-snapshot.py stage1
4
5
5
- snap-stage2 : stage2/rustc$(X ) stage2/glue.o stage2/lib/$(CFG_STDLIB )
6
+ snap-stage2 : stage2/rustc$(X ) stage2/glue.o stage2/lib/$(CFG_STDLIB ) \
7
+ stage2/lib/libstd.rlib
6
8
$(S ) src/etc/make-snapshot.py stage2
7
9
8
- snap-stage3 : stage3/rustc$(X ) stage3/glue.o stage3/lib/$(CFG_STDLIB )
10
+ snap-stage3 : stage3/rustc$(X ) stage3/glue.o stage3/lib/$(CFG_STDLIB ) \
11
+ stage3/lib/libstd.rlib
9
12
$(S ) src/etc/make-snapshot.py stage3
10
13
Original file line number Diff line number Diff line change @@ -4,6 +4,12 @@ stage1/lib/$(CFG_STDLIB): $(STDLIB_CRATE) $(STDLIB_INPUTS) \
4
4
@$(call E, compile_and_link: $@)
5
5
$(STAGE1) --lib -o $@ $<
6
6
7
+ stage1/lib/libstd.rlib : $(STDLIB_CRATE ) $(STDLIB_INPUTS ) \
8
+ stage1/rustc$(X) stage0/lib/$(CFG_STDLIB) stage1/intrinsics.bc \
9
+ stage1/glue.o $(LREQ) $(MKFILES)
10
+ @$(call E, compile_and_link: $@)
11
+ $(STAGE1) --lib --static -o $@ $<
12
+
7
13
stage1/lib/glue.o : stage1/rustc$(X ) stage0/lib/$(CFG_STDLIB ) \
8
14
stage1/intrinsics.bc $(LREQ ) $(MKFILES )
9
15
@$(call E, generate: $@ )
Original file line number Diff line number Diff line change @@ -4,6 +4,12 @@ stage2/lib/$(CFG_STDLIB): $(STDLIB_CRATE) $(STDLIB_INPUTS) \
4
4
@$(call E, compile_and_link: $@)
5
5
$(STAGE2) --lib -o $@ $<
6
6
7
+ stage2/lib/libstd.rlib : $(STDLIB_CRATE ) $(STDLIB_INPUTS ) \
8
+ stage2/rustc$(X) stage1/lib/$(CFG_STDLIB) stage2/intrinsics.bc \
9
+ stage2/glue.o $(LREQ) $(MKFILES)
10
+ @$(call E, compile_and_link: $@)
11
+ $(STAGE2) --lib --static -o $@ $<
12
+
7
13
stage2/lib/glue.o : stage2/rustc$(X ) stage1/lib/$(CFG_STDLIB ) \
8
14
stage2/intrinsics.bc rustllvm/$(CFG_RUSTLLVM ) rt/$(CFG_RUNTIME )
9
15
@$(call E, generate: $@ )
Original file line number Diff line number Diff line change @@ -4,6 +4,12 @@ stage3/lib/$(CFG_STDLIB): $(STDLIB_CRATE) $(STDLIB_INPUTS) \
4
4
@$(call E, compile_and_link: $@)
5
5
$(STAGE3) --lib -o $@ $<
6
6
7
+ stage3/lib/libstd.rlib : $(STDLIB_CRATE ) $(STDLIB_INPUTS ) \
8
+ stage3/rustc$(X) stage2/lib/$(CFG_STDLIB) stage3/intrinsics.bc \
9
+ stage3/glue.o $(LREQ) $(MKFILES)
10
+ @$(call E, compile_and_link: $@)
11
+ $(STAGE3) --lib --static -o $@ $<
12
+
7
13
stage3/lib/glue.o : stage3/rustc$(X ) stage2/lib/$(CFG_STDLIB ) \
8
14
stage3/intrinsics.bc rustllvm/$(CFG_RUSTLLVM ) rt/$(CFG_RUNTIME )
9
15
@$(call E, generate: $@ )
You can’t perform that action at this time.
0 commit comments