diff options
| author | bors <bors@rust-lang.org> | 2014-06-14 17:51:49 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2014-06-14 17:51:49 +0000 |
| commit | 6d8342f5e9f7093694548e761ee7df4f55243f3f (patch) | |
| tree | 64606dac9c81ec4567e19f503d4d82e249dbf40a /src/liballoc | |
| parent | d64f18c490981f33f33e9c24e1ed1316e63f11fc (diff) | |
| parent | ade807c6dcf6dc4454732c5e914ca06ebb429773 (diff) | |
| download | rust-6d8342f5e9f7093694548e761ee7df4f55243f3f.tar.gz rust-6d8342f5e9f7093694548e761ee7df4f55243f3f.zip | |
auto merge of #14835 : alexcrichton/rust/no-more-at, r=brson
All functionality is now available through `Gc<T>` and `box(GC) expr`. This change also removes `GC` from the prelude (it's an experimental feature).
Diffstat (limited to 'src/liballoc')
| -rw-r--r-- | src/liballoc/lib.rs | 13 |
1 files changed, 2 insertions, 11 deletions
diff --git a/src/liballoc/lib.rs b/src/liballoc/lib.rs index fe9fe57bdbd..0d8d25bff20 100644 --- a/src/liballoc/lib.rs +++ b/src/liballoc/lib.rs @@ -70,25 +70,16 @@ #![no_std] #![feature(phase)] -#[cfg(stage0)] -#[phase(syntax, link)] -extern crate core; - -#[cfg(not(stage0))] #[phase(plugin, link)] extern crate core; - extern crate libc; - // Allow testing this library #[cfg(test)] extern crate debug; #[cfg(test)] extern crate native; -#[cfg(test, stage0)] #[phase(syntax, link)] extern crate std; -#[cfg(test, stage0)] #[phase(syntax, link)] extern crate log; -#[cfg(test, not(stage0))] #[phase(plugin, link)] extern crate std; -#[cfg(test, not(stage0))] #[phase(plugin, link)] extern crate log; +#[cfg(test)] #[phase(plugin, link)] extern crate std; +#[cfg(test)] #[phase(plugin, link)] extern crate log; // Heaps provided for low-level allocation strategies |
