mirror of
https://github.com/rust-lang/rust.git
synced 2025-01-22 12:43:36 +00:00
Use new snapshot.
This commit is contained in:
parent
64ad5928e7
commit
15a670a1b1
@ -11,8 +11,5 @@ stage0/lib/glue.o: stage0/rustc$(X)
|
||||
stage0/lib/$(CFG_STDLIB): stage0/rustc$(X)
|
||||
$(Q)touch $@
|
||||
|
||||
# TODO: Include as part of the snapshot.
|
||||
stage0/intrinsics.bc: $(INTRINSICS_BC)
|
||||
@$(call E, cp: $@)
|
||||
$(Q)cp $< $@
|
||||
|
||||
stage0/intrinsics.bc: stage0/rustc$(X)
|
||||
$(Q)touch $@
|
||||
|
@ -9,7 +9,7 @@ def unpack_snapshot(snap):
|
||||
print("opening snapshot " + dl_path)
|
||||
tar = tarfile.open(dl_path)
|
||||
kernel = get_kernel()
|
||||
for name in old_snapshot_files[kernel]:
|
||||
for name in snapshot_files[kernel]:
|
||||
p = "rust-stage0/" + name
|
||||
fp = os.path.join("stage0", name)
|
||||
print("extracting " + fp)
|
||||
|
@ -15,15 +15,6 @@ download_url_base = "http://dl.rust-lang.org/stage0-snapshots"
|
||||
download_dir_base = "dl"
|
||||
download_unpack_base = os.path.join(download_dir_base, "unpack")
|
||||
|
||||
old_snapshot_files = {
|
||||
"linux": ["rustc", "lib/glue.o", "lib/libstd.so", "lib/libstd.rlib",
|
||||
"lib/librustrt.so", "lib/librustllvm.so"],
|
||||
"macos": ["rustc", "lib/glue.o", "lib/libstd.dylib", "lib/libstd.rlib",
|
||||
"lib/librustrt.dylib", "lib/librustllvm.dylib"],
|
||||
"winnt": ["rustc.exe", "lib/glue.o", "lib/std.dll", "lib/libstd.rlib",
|
||||
"lib/rustrt.dll", "lib/rustllvm.dll"]
|
||||
}
|
||||
|
||||
snapshot_files = {
|
||||
"linux": ["rustc", "lib/glue.o", "lib/libstd.so", "lib/libstd.rlib",
|
||||
"lib/librustrt.so", "lib/librustllvm.so", "intrinsics.bc"],
|
||||
|
@ -1,3 +1,8 @@
|
||||
S 2011-07-11 f666c97
|
||||
linux-i386 434346526e3feecf80ceb58f132fb4ea6cbfec0a
|
||||
macos-i386 f643f88b1414bf43c1821a9d3eea0bdc8df2f68d
|
||||
winnt-i386 67e09bf1fb2ae0894cfc99fabee1ed716f218486
|
||||
|
||||
S 2011-07-09 f42c947
|
||||
linux-i386 9cb82d02baaccc6efc1b5dff5f3d41aa0c8546e8
|
||||
macos-i386 5fd5b3fff6bdaaffc5a55d208370d3764076b54e
|
||||
|
Loading…
Reference in New Issue
Block a user