add implementations of memcpy et al
behind the "mem" Cargo feature, which used to be named "weak" fixes #126
This commit is contained in:
@@ -11,7 +11,6 @@
|
||||
#![feature(asm)]
|
||||
#![feature(compiler_builtins)]
|
||||
#![feature(core_intrinsics)]
|
||||
#![feature(linkage)]
|
||||
#![feature(naked_functions)]
|
||||
#![feature(staged_api)]
|
||||
#![no_builtins]
|
||||
@@ -102,9 +101,6 @@ extern crate compiler_rt;
|
||||
#[cfg(test)]
|
||||
extern crate rand;
|
||||
|
||||
#[cfg(feature = "weak")]
|
||||
extern crate rlibc;
|
||||
|
||||
#[cfg(test)]
|
||||
#[macro_use]
|
||||
mod qc;
|
||||
@@ -112,6 +108,9 @@ mod qc;
|
||||
pub mod int;
|
||||
pub mod float;
|
||||
|
||||
#[cfg(feature = "mem")]
|
||||
pub mod mem;
|
||||
|
||||
#[cfg(target_arch = "arm")]
|
||||
pub mod arm;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user