limit compilation of arch to x86_64

the current code only supports x86_64 (#1), and we want to fail hard on
any other architecture for now.
master
edef 2015-04-15 19:56:10 -04:00
parent 6d56cc593e
commit 31652d7b8f
1 changed files with 1 additions and 0 deletions

View File

@ -19,6 +19,7 @@ mod std { pub use core::*; }
pub mod context;
pub mod stack;
#[cfg(target_arch = "x86_64")]
mod arch;
#[cfg(feature = "os")]