Register new snapshots
This commit is contained in:
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user