forked from M-Labs/libfringe
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.
This commit is contained in:
parent
6d56cc593e
commit
31652d7b8f
|
@ -19,6 +19,7 @@ mod std { pub use core::*; }
|
||||||
pub mod context;
|
pub mod context;
|
||||||
pub mod stack;
|
pub mod stack;
|
||||||
|
|
||||||
|
#[cfg(target_arch = "x86_64")]
|
||||||
mod arch;
|
mod arch;
|
||||||
|
|
||||||
#[cfg(feature = "os")]
|
#[cfg(feature = "os")]
|
||||||
|
|
Loading…
Reference in New Issue