]> git.lizzy.rs Git - rust.git/commitdiff
Fallout from updating bootstrap Cargo
authorAlex Crichton <alex@alexcrichton.com>
Thu, 29 Dec 2016 04:13:10 +0000 (20:13 -0800)
committerAlex Crichton <alex@alexcrichton.com>
Thu, 29 Dec 2016 16:47:26 +0000 (08:47 -0800)
src/libcollections/Cargo.toml
src/libcore/Cargo.toml
src/libproc_macro_tokens/Cargo.toml
src/librustc/lib.rs
src/librustc_llvm/ffi.rs
src/librustc_llvm/lib.rs
src/librustc_mir/lib.rs
src/librustc_plugin/Cargo.toml
src/tools/rustbook/Cargo.toml

index ab882fde9c2775683f0b63f48f3cc843232a319e..186ba6e8f211243512c1814c6598a36f1b75dc48 100644 (file)
@@ -16,6 +16,7 @@ std_unicode = { path = "../libstd_unicode" }
 name = "collectionstest"
 path = "../libcollectionstest/lib.rs"
 
-[[bench]]
-name = "collectionstest"
-path = "../libcollectionstest/lib.rs"
+# FIXME: need to extract benchmarks to separate crate
+#[[bench]]
+#name = "collectionstest"
+#path = "../libcollectionstest/lib.rs"
index a72c712ad1733c4d29ae1f5f688092acf69b5526..e0dbc096cd0d97f567da3f17d42b4f167dace0e0 100644 (file)
@@ -13,6 +13,7 @@ bench = false
 name = "coretest"
 path = "../libcoretest/lib.rs"
 
-[[bench]]
-name = "coretest"
-path = "../libcoretest/lib.rs"
+# FIXME: need to extract benchmarks to a separate crate
+#[[bench]]
+#name = "coretest"
+#path = "../libcoretest/lib.rs"
index 2b66d56759f35b220debeab20ea604f5f51f07bb..b4365e4fb265a5bc159c244b960204c2f5ece639 100644 (file)
@@ -2,6 +2,7 @@
 authors = ["The Rust Project Developers"]
 name = "proc_macro_tokens"
 version = "0.0.0"
+build = false
 
 [lib]
 path = "lib.rs"
index ff508d2d8194a3b9d39de836e7448c1485bb74d1..efe855f0a39e9c84af006a7ed2e4a7b7115abf0f 100644 (file)
@@ -30,7 +30,6 @@
 #![feature(conservative_impl_trait)]
 #![feature(const_fn)]
 #![feature(core_intrinsics)]
-#![cfg_attr(stage0, feature(item_like_imports))]
 #![feature(libc)]
 #![feature(nonzero)]
 #![feature(pub_restricted)]
index f3dbac7ce682eed8078ecd0fab5c9437f3693b93..5fd85023e417463b6c3d8fc7ed07b3d3942d1821 100644 (file)
@@ -472,9 +472,7 @@ pub enum DIBuilder_opaque {}
 // generates an llvmdeps.rs file next to this one which will be
 // automatically updated whenever LLVM is updated to include an up-to-date
 // 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
-#[cfg_attr(stage0, linked_from = "rustllvm")]
+#[link(name = "rustllvm", kind = "static")] // not quite true but good enough
 extern "C" {
     // Create and destroy contexts.
     pub fn LLVMContextCreate() -> ContextRef;
index 69709f72b8b42e00e20e1e57df37312d4d4601ba..c8b1ea50f9786de5f65ff5ed250ac0d4ef0b9696 100644 (file)
@@ -27,9 +27,8 @@
 #![feature(concat_idents)]
 #![feature(libc)]
 #![feature(link_args)]
-#![cfg_attr(stage0, feature(linked_from))]
 #![feature(staged_api)]
-#![cfg_attr(not(stage0), feature(rustc_private))]
+#![feature(rustc_private)]
 
 extern crate libc;
 #[macro_use]
index 617bd81d96a2c90f3f83fe1c86d1ca8651b9ac20..56dadd2d673e1e7fc9bfa7aa9e86c9a358f937c3 100644 (file)
@@ -22,7 +22,6 @@
 
 #![feature(associated_consts)]
 #![feature(box_patterns)]
-#![cfg_attr(stage0, feature(item_like_imports))]
 #![feature(rustc_diagnostic_macros)]
 #![feature(rustc_private)]
 #![feature(staged_api)]
index 514d81ecc94f2a9f6b27ca8f5c39520b69f9c1b7..48d4437358c58ef5c58f7e633b517343ee12f51e 100644 (file)
@@ -2,6 +2,7 @@
 authors = ["The Rust Project Developers"]
 name = "rustc_plugin"
 version = "0.0.0"
+build = false
 
 [lib]
 name = "rustc_plugin"
index 956392ca540cd64c8efcd0c6b31b4af92cb2af40..e7690c03de5c3de88856a9b03c0d93405bdc8729 100644 (file)
@@ -2,6 +2,7 @@
 authors = ["The Rust Project Developers"]
 name = "rustbook"
 version = "0.0.0"
+build = false
 
 [[bin]]
 name = "rustbook"