File tree Expand file tree Collapse file tree 3 files changed +19
-7
lines changed Expand file tree Collapse file tree 3 files changed +19
-7
lines changed Original file line number Diff line number Diff line change 1
1
---
2
- refs/heads/master: 81f932e7d7e7949263731923f33a4c6dd05554bf
2
+ refs/heads/master: e4aa73c0f9914050ee125f439a07ced825dfb960
Original file line number Diff line number Diff line change @@ -10,6 +10,9 @@ def unpack_snapshot(triple, snap):
10
10
tar = tarfile .open (dl_path )
11
11
kernel = get_kernel (triple )
12
12
for name in snapshot_files [kernel ]:
13
+ # FIXME: temporary hack to make transition, remove soon.
14
+ if "core" in name :
15
+ continue
13
16
p = "rust-stage0/" + name
14
17
stagep = os .path .join (triple , "stage0" )
15
18
fp = os .path .join (stagep , name )
Original file line number Diff line number Diff line change @@ -16,12 +16,21 @@ def scrub(b):
16
16
download_unpack_base = os .path .join (download_dir_base , "unpack" )
17
17
18
18
snapshot_files = {
19
- "linux" : ["bin/rustc" , "lib/libruststd.so" ,
20
- "lib/librustrt.so" , "lib/librustllvm.so" ],
21
- "macos" : ["bin/rustc" , "lib/libruststd.dylib" ,
22
- "lib/librustrt.dylib" , "lib/librustllvm.dylib" ],
23
- "winnt" : ["bin/rustc.exe" , "lib/ruststd.dll" ,
24
- "lib/rustrt.dll" , "lib/rustllvm.dll" ]
19
+ "linux" : ["bin/rustc" ,
20
+ "lib/libcore.so" ,
21
+ "lib/libruststd.so" ,
22
+ "lib/librustrt.so" ,
23
+ "lib/librustllvm.so" ],
24
+ "macos" : ["bin/rustc" ,
25
+ "lib/libcore.dylib" ,
26
+ "lib/libruststd.dylib" ,
27
+ "lib/librustrt.dylib" ,
28
+ "lib/librustllvm.dylib" ],
29
+ "winnt" : ["bin/rustc.exe" ,
30
+ "lib/core.dll" ,
31
+ "lib/ruststd.dll" ,
32
+ "lib/rustrt.dll" ,
33
+ "lib/rustllvm.dll" ]
25
34
}
26
35
27
36
def parse_line (n , line ):
You can’t perform that action at this time.
0 commit comments