File tree Expand file tree Collapse file tree 3 files changed +6
-4
lines changed Expand file tree Collapse file tree 3 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 1
1
---
2
- refs/heads/master: 8c821ff03868c08e0c1b4c7caa730f8b7c560bd5
2
+ refs/heads/master: b0059bd357404859aae3300e76ad3cc8a91b5364
Original file line number Diff line number Diff line change 1
1
2
- snap-stage1 : stage1/rustc$(X ) stage1/lib/glue.o stage1/lib/$(CFG_STDLIB ) \
3
- stage1/lib/libstd.rlib stage1/lib/$(CFG_RUNTIME ) \
2
+ snap-stage1 : stage1/rustc$(X ) stage1/lib/glue.o stage1/lib/$(CFG_RUNTIME ) \
4
3
stage1/$(CFG_RUSTLLVM )
5
4
$(S ) src/etc/make-snapshot.py stage1
6
5
Original file line number Diff line number Diff line change @@ -120,7 +120,10 @@ def make_snapshot(stage):
120
120
121
121
tar = tarfile .open (file0 , "w:bz2" )
122
122
for name in snapshot_files [kernel ]:
123
- tar .add (os .path .join (stage , name ),
123
+ dir = stage
124
+ if stage == "stage1" and re .match (r"^lib/(lib)?std.*" , name ):
125
+ dir = "stage0"
126
+ tar .add (os .path .join (dir , name ),
124
127
"rust-stage0/" + name )
125
128
tar .close ()
126
129
You can’t perform that action at this time.
0 commit comments