mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 06:44:35 +00:00
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 https://github.com/rust-lang/rust/pull/38470
This commit is contained in:
commit
e7c788af75
@ -16,6 +16,7 @@ std_unicode = { path = "../libstd_unicode" }
|
|||||||
name = "collectionstest"
|
name = "collectionstest"
|
||||||
path = "../libcollectionstest/lib.rs"
|
path = "../libcollectionstest/lib.rs"
|
||||||
|
|
||||||
[[bench]]
|
# FIXME: need to extract benchmarks to separate crate
|
||||||
name = "collectionstest"
|
#[[bench]]
|
||||||
path = "../libcollectionstest/lib.rs"
|
#name = "collectionstest"
|
||||||
|
#path = "../libcollectionstest/lib.rs"
|
||||||
|
@ -13,6 +13,7 @@ bench = false
|
|||||||
name = "coretest"
|
name = "coretest"
|
||||||
path = "../libcoretest/lib.rs"
|
path = "../libcoretest/lib.rs"
|
||||||
|
|
||||||
[[bench]]
|
# FIXME: need to extract benchmarks to a separate crate
|
||||||
name = "coretest"
|
#[[bench]]
|
||||||
path = "../libcoretest/lib.rs"
|
#name = "coretest"
|
||||||
|
#path = "../libcoretest/lib.rs"
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
authors = ["The Rust Project Developers"]
|
authors = ["The Rust Project Developers"]
|
||||||
name = "proc_macro_tokens"
|
name = "proc_macro_tokens"
|
||||||
version = "0.0.0"
|
version = "0.0.0"
|
||||||
|
build = false
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
path = "lib.rs"
|
path = "lib.rs"
|
||||||
|
@ -30,7 +30,6 @@
|
|||||||
#![feature(conservative_impl_trait)]
|
#![feature(conservative_impl_trait)]
|
||||||
#![feature(const_fn)]
|
#![feature(const_fn)]
|
||||||
#![feature(core_intrinsics)]
|
#![feature(core_intrinsics)]
|
||||||
#![cfg_attr(stage0, feature(item_like_imports))]
|
|
||||||
#![feature(libc)]
|
#![feature(libc)]
|
||||||
#![feature(nonzero)]
|
#![feature(nonzero)]
|
||||||
#![feature(pub_restricted)]
|
#![feature(pub_restricted)]
|
||||||
|
@ -472,9 +472,7 @@ pub mod debuginfo {
|
|||||||
// generates an llvmdeps.rs file next to this one which will be
|
// generates an llvmdeps.rs file next to this one which will be
|
||||||
// automatically updated whenever LLVM is updated to include an up-to-date
|
// automatically updated whenever LLVM is updated to include an up-to-date
|
||||||
// set of the libraries we need to link to LLVM for.
|
// set of the libraries we need to link to LLVM for.
|
||||||
#[cfg_attr(not(all(stage0,cargobuild)),
|
#[link(name = "rustllvm", kind = "static")] // not quite true but good enough
|
||||||
link(name = "rustllvm", kind = "static"))] // not quite true but good enough
|
|
||||||
#[cfg_attr(stage0, linked_from = "rustllvm")]
|
|
||||||
extern "C" {
|
extern "C" {
|
||||||
// Create and destroy contexts.
|
// Create and destroy contexts.
|
||||||
pub fn LLVMContextCreate() -> ContextRef;
|
pub fn LLVMContextCreate() -> ContextRef;
|
||||||
|
@ -27,9 +27,8 @@
|
|||||||
#![feature(concat_idents)]
|
#![feature(concat_idents)]
|
||||||
#![feature(libc)]
|
#![feature(libc)]
|
||||||
#![feature(link_args)]
|
#![feature(link_args)]
|
||||||
#![cfg_attr(stage0, feature(linked_from))]
|
|
||||||
#![feature(staged_api)]
|
#![feature(staged_api)]
|
||||||
#![cfg_attr(not(stage0), feature(rustc_private))]
|
#![feature(rustc_private)]
|
||||||
|
|
||||||
extern crate libc;
|
extern crate libc;
|
||||||
#[macro_use]
|
#[macro_use]
|
||||||
|
@ -22,7 +22,6 @@ Rust MIR: a lowered representation of Rust. Also: an experiment!
|
|||||||
|
|
||||||
#![feature(associated_consts)]
|
#![feature(associated_consts)]
|
||||||
#![feature(box_patterns)]
|
#![feature(box_patterns)]
|
||||||
#![cfg_attr(stage0, feature(item_like_imports))]
|
|
||||||
#![feature(rustc_diagnostic_macros)]
|
#![feature(rustc_diagnostic_macros)]
|
||||||
#![feature(rustc_private)]
|
#![feature(rustc_private)]
|
||||||
#![feature(staged_api)]
|
#![feature(staged_api)]
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
authors = ["The Rust Project Developers"]
|
authors = ["The Rust Project Developers"]
|
||||||
name = "rustc_plugin"
|
name = "rustc_plugin"
|
||||||
version = "0.0.0"
|
version = "0.0.0"
|
||||||
|
build = false
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
name = "rustc_plugin"
|
name = "rustc_plugin"
|
||||||
|
@ -12,5 +12,5 @@
|
|||||||
# tarball for a stable release you'll likely see `1.x.0-$date` where `1.x.0` was
|
# tarball for a stable release you'll likely see `1.x.0-$date` where `1.x.0` was
|
||||||
# released on `$date`
|
# released on `$date`
|
||||||
|
|
||||||
rustc: beta-2016-12-16
|
rustc: beta-2016-12-20
|
||||||
cargo: fbeea902d2c9a5be6d99cc35681565d8f7832592
|
cargo: bfee18f73287687c543bda8c35e4e33808792715
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
authors = ["The Rust Project Developers"]
|
authors = ["The Rust Project Developers"]
|
||||||
name = "rustbook"
|
name = "rustbook"
|
||||||
version = "0.0.0"
|
version = "0.0.0"
|
||||||
|
build = false
|
||||||
|
|
||||||
[[bin]]
|
[[bin]]
|
||||||
name = "rustbook"
|
name = "rustbook"
|
||||||
|
Loading…
Reference in New Issue
Block a user