exclude windows and macos
This commit is contained in:
parent
265939fc00
commit
fdbb7883da
|
@ -4,9 +4,9 @@
|
||||||
#![feature(linkage)]
|
#![feature(linkage)]
|
||||||
#![feature(naked_functions)]
|
#![feature(naked_functions)]
|
||||||
#![cfg_attr(not(test), no_std)]
|
#![cfg_attr(not(test), no_std)]
|
||||||
|
#![no_builtins]
|
||||||
// TODO(rust-lang/rust#35021) uncomment when that PR lands
|
// TODO(rust-lang/rust#35021) uncomment when that PR lands
|
||||||
// #![feature(rustc_builtins)]
|
// #![feature(rustc_builtins)]
|
||||||
#![no_builtins]
|
|
||||||
|
|
||||||
// We disable #[no_mangle] for tests so that we can verify the test results
|
// We disable #[no_mangle] for tests so that we can verify the test results
|
||||||
// against the native compiler-rt implementations of the builtins.
|
// against the native compiler-rt implementations of the builtins.
|
||||||
|
@ -22,6 +22,7 @@ extern crate core;
|
||||||
pub mod arm;
|
pub mod arm;
|
||||||
|
|
||||||
pub mod udiv;
|
pub mod udiv;
|
||||||
|
#[cfg(all(not(windows), not(target_os = "macos")))]
|
||||||
pub mod mem;
|
pub mod mem;
|
||||||
pub mod mul;
|
pub mod mul;
|
||||||
pub mod shift;
|
pub mod shift;
|
||||||
|
|
Loading…
Reference in New Issue