Change list of supported arches

* Only aarch64 atm
This commit is contained in:
Berkus Decker 2019-02-24 00:03:27 +02:00
parent 75295e0b0d
commit 1e8735c1f6
1 changed files with 2 additions and 4 deletions

View File

@ -13,12 +13,10 @@
#![allow(unused_assignments)]
#![allow(unused_must_use)]
#[cfg(not(any(target_arch = "aarch64", target_arch = "x86_64")))]
//any(target_arch = "aarch64", target_arch = "x86_64")
#[cfg(not(target_arch = "aarch64"))]
use architecture_not_supported_sorry;
// use core::intrinsics::abort;
// #[macro_use]
extern crate bitflags;
#[macro_use]
extern crate register;