Skip to content

Commit e7c788a

Browse files
committed
Auto merge of #38503 - brson:bootstrap, r=alexcrichton
Bump bootstrap compiler r? @alexcrichton I'm not clear on whether cargo will need to additionally be bumped beyond what's in #38470
2 parents 3f957eb + 03bc2cf commit e7c788a

File tree

10 files changed

+15
-15
lines changed

10 files changed

+15
-15
lines changed

src/libcollections/Cargo.toml

+4-3
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ std_unicode = { path = "../libstd_unicode" }
1616
name = "collectionstest"
1717
path = "../libcollectionstest/lib.rs"
1818

19-
[[bench]]
20-
name = "collectionstest"
21-
path = "../libcollectionstest/lib.rs"
19+
# FIXME: need to extract benchmarks to separate crate
20+
#[[bench]]
21+
#name = "collectionstest"
22+
#path = "../libcollectionstest/lib.rs"

src/libcore/Cargo.toml

+4-3
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ bench = false
1313
name = "coretest"
1414
path = "../libcoretest/lib.rs"
1515

16-
[[bench]]
17-
name = "coretest"
18-
path = "../libcoretest/lib.rs"
16+
# FIXME: need to extract benchmarks to a separate crate
17+
#[[bench]]
18+
#name = "coretest"
19+
#path = "../libcoretest/lib.rs"

src/libproc_macro_tokens/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
authors = ["The Rust Project Developers"]
33
name = "proc_macro_tokens"
44
version = "0.0.0"
5+
build = false
56

67
[lib]
78
path = "lib.rs"

src/librustc/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@
3030
#![feature(conservative_impl_trait)]
3131
#![feature(const_fn)]
3232
#![feature(core_intrinsics)]
33-
#![cfg_attr(stage0, feature(item_like_imports))]
3433
#![feature(libc)]
3534
#![feature(nonzero)]
3635
#![feature(pub_restricted)]

src/librustc_llvm/ffi.rs

+1-3
Original file line numberDiff line numberDiff line change
@@ -472,9 +472,7 @@ pub mod debuginfo {
472472
// generates an llvmdeps.rs file next to this one which will be
473473
// automatically updated whenever LLVM is updated to include an up-to-date
474474
// set of the libraries we need to link to LLVM for.
475-
#[cfg_attr(not(all(stage0,cargobuild)),
476-
link(name = "rustllvm", kind = "static"))] // not quite true but good enough
477-
#[cfg_attr(stage0, linked_from = "rustllvm")]
475+
#[link(name = "rustllvm", kind = "static")] // not quite true but good enough
478476
extern "C" {
479477
// Create and destroy contexts.
480478
pub fn LLVMContextCreate() -> ContextRef;

src/librustc_llvm/lib.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,8 @@
2727
#![feature(concat_idents)]
2828
#![feature(libc)]
2929
#![feature(link_args)]
30-
#![cfg_attr(stage0, feature(linked_from))]
3130
#![feature(staged_api)]
32-
#![cfg_attr(not(stage0), feature(rustc_private))]
31+
#![feature(rustc_private)]
3332

3433
extern crate libc;
3534
#[macro_use]

src/librustc_mir/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ Rust MIR: a lowered representation of Rust. Also: an experiment!
2222

2323
#![feature(associated_consts)]
2424
#![feature(box_patterns)]
25-
#![cfg_attr(stage0, feature(item_like_imports))]
2625
#![feature(rustc_diagnostic_macros)]
2726
#![feature(rustc_private)]
2827
#![feature(staged_api)]

src/librustc_plugin/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
authors = ["The Rust Project Developers"]
33
name = "rustc_plugin"
44
version = "0.0.0"
5+
build = false
56

67
[lib]
78
name = "rustc_plugin"

src/stage0.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@
1212
# tarball for a stable release you'll likely see `1.x.0-$date` where `1.x.0` was
1313
# released on `$date`
1414

15-
rustc: beta-2016-12-16
16-
cargo: fbeea902d2c9a5be6d99cc35681565d8f7832592
15+
rustc: beta-2016-12-20
16+
cargo: bfee18f73287687c543bda8c35e4e33808792715

src/tools/rustbook/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
authors = ["The Rust Project Developers"]
33
name = "rustbook"
44
version = "0.0.0"
5+
build = false
56

67
[[bin]]
78
name = "rustbook"

0 commit comments

Comments
 (0)