Revert "create a nostd crate"

This reverts commit 14768f9b636ef345320ded41da5e9f3da7af3a81.
This commit is contained in:
Jorge Aparicio 2018-04-04 22:23:33 +02:00
parent 14768f9b63
commit bca569f57c
5 changed files with 4 additions and 35 deletions

10
src/Cargo.lock generated
View File

@ -1081,16 +1081,6 @@ name = "nodrop"
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"

View File

@ -2,7 +2,6 @@
members = [
"bootstrap",
"rustc",
"libnostd",
"libstd",
"libtest",
"librustc_trans",

View File

@ -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();

View File

@ -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" }

View File

@ -1,3 +0,0 @@
#![feature(staged_api)]
#![no_std]
#![unstable(feature = "nostd", issue = "0")]