about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--src/Cargo.lock10
-rw-r--r--src/Cargo.toml1
-rw-r--r--src/bootstrap/compile.rs8
-rw-r--r--src/libnostd/Cargo.toml17
-rw-r--r--src/libnostd/lib.rs3
5 files changed, 4 insertions, 35 deletions
diff --git a/src/Cargo.lock b/src/Cargo.lock
index 42ac9b3c49d..1f7cf84cedb 100644
--- a/src/Cargo.lock
+++ b/src/Cargo.lock
@@ -1082,16 +1082,6 @@ version = "0.1.12"
 source = "registry+https://github.com/rust-lang/crates.io-index"
 
 [[package]]
-name = "nostd"
-version = "0.0.0"
-dependencies = [
- "alloc 0.0.0",
- "compiler_builtins 0.0.0",
- "core 0.0.0",
- "std_unicode 0.0.0",
-]
-
-[[package]]
 name = "num"
 version = "0.1.42"
 source = "registry+https://github.com/rust-lang/crates.io-index"
diff --git a/src/Cargo.toml b/src/Cargo.toml
index babf35d570b..814c054c51e 100644
--- a/src/Cargo.toml
+++ b/src/Cargo.toml
@@ -2,7 +2,6 @@
 members = [
   "bootstrap",
   "rustc",
-  "libnostd",
   "libstd",
   "libtest",
   "librustc_trans",
diff --git a/src/bootstrap/compile.rs b/src/bootstrap/compile.rs
index a93b26ac2ba..eaf4ab272c6 100644
--- a/src/bootstrap/compile.rs
+++ b/src/bootstrap/compile.rs
@@ -145,10 +145,10 @@ pub fn std_cargo(build: &Builder,
     }
 
     if build.no_std(target) == Some(true) {
-        // for no-std targets we compile a minimal nostd crate that only depends on crates that work
-        // without an OS
-        cargo.arg("--manifest-path")
-            .arg(build.src.join("src/libnostd/Cargo.toml"));
+        // for no-std targets we only compile core and compiler-builtins
+        cargo.arg("--features").arg("c mem")
+            .arg("--manifest-path")
+            .arg(build.src.join("src/rustc/compiler_builtins_shim/Cargo.toml"));
     } else {
         let mut features = build.std_features();
 
diff --git a/src/libnostd/Cargo.toml b/src/libnostd/Cargo.toml
deleted file mode 100644
index 6919390d3e2..00000000000
--- a/src/libnostd/Cargo.toml
+++ /dev/null
@@ -1,17 +0,0 @@
-[package]
-authors = ["The Rust Project Developers"]
-name = "nostd"
-version = "0.0.0"
-license = "MIT/Apache-2.0"
-repository = "https://github.com/rust-lang/rust.git"
-description = "(not) The Rust Standard Library"
-
-[lib]
-name = "nostd"
-path = "lib.rs"
-
-[dependencies]
-alloc = { path = "../liballoc" }
-compiler_builtins = { path = "../rustc/compiler_builtins_shim", features = ["c", "mem"] }
-core = { path = "../libcore" }
-std_unicode = { path = "../libstd_unicode" }
\ No newline at end of file
diff --git a/src/libnostd/lib.rs b/src/libnostd/lib.rs
deleted file mode 100644
index d28afe2838e..00000000000
--- a/src/libnostd/lib.rs
+++ /dev/null
@@ -1,3 +0,0 @@
-#![feature(staged_api)]
-#![no_std]
-#![unstable(feature = "nostd", issue = "0")]