Skip to content

Commit 24cf6a7

Browse files
committed
---
yaml --- r: 3679 b: refs/heads/master c: 83991c4 h: refs/heads/master i: 3677: 33869c4 3675: 9fa4d50 3671: 381cd8f 3663: 65b16e7 3647: 7f9f5ce v: v3
1 parent fc7b82b commit 24cf6a7

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

[refs]

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
---
2-
refs/heads/master: e4407811642f87b5e2bcf0a75cef3a7baef88414
2+
refs/heads/master: 83991c4c954194ba26f5254e19c7a77b9b90307d

trunk/src/etc/get-snapshot.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ def unpack_snapshot(snap):
99
print("opening snapshot " + dl_path)
1010
tar = tarfile.open(dl_path)
1111
kernel = get_kernel()
12-
for name in snapshot_files[kernel]:
12+
for name in old_snapshot_files[kernel]:
1313
p = "rust-stage0/" + name
1414
fp = os.path.join("stage0", name)
1515
print("extracting " + fp)

trunk/src/etc/snapshot.py

+7-1
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,18 @@ def scrub(b):
1515
download_dir_base = "dl"
1616
download_unpack_base = os.path.join(download_dir_base, "unpack")
1717

18-
snapshot_files = {
18+
old_snapshot_files = {
1919
"linux": ["rustc", "lib/glue.o", "lib/libstd.so" ],
2020
"macos": ["rustc", "lib/glue.o", "lib/libstd.dylib" ],
2121
"winnt": ["rustc.exe", "lib/glue.o", "lib/std.dll" ]
2222
}
2323

24+
snapshot_files = {
25+
"linux": ["rustc", "lib/glue.o", "lib/libstd.so", "lib/libstd.rlib" ],
26+
"macos": ["rustc", "lib/glue.o", "lib/libstd.dylib", "lib/libstd.rlib" ],
27+
"winnt": ["rustc.exe", "lib/glue.o", "lib/std.dll", "lib/libstd.rlib" ]
28+
}
29+
2430
def parse_line(n, line):
2531
global snapshotfile
2632

0 commit comments

Comments
 (0)