Revert "create a nostd crate"
This reverts commit 14768f9b636ef345320ded41da5e9f3da7af3a81.
This commit is contained in:
parent
14768f9b63
commit
bca569f57c
10
src/Cargo.lock
generated
10
src/Cargo.lock
generated
@ -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"
|
||||
|
@ -2,7 +2,6 @@
|
||||
members = [
|
||||
"bootstrap",
|
||||
"rustc",
|
||||
"libnostd",
|
||||
"libstd",
|
||||
"libtest",
|
||||
"librustc_trans",
|
||||
|
@ -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();
|
||||
|
||||
|
@ -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" }
|
@ -1,3 +0,0 @@
|
||||
#![feature(staged_api)]
|
||||
#![no_std]
|
||||
#![unstable(feature = "nostd", issue = "0")]
|
Loading…
x
Reference in New Issue
Block a user