Skip to content
Snippets Groups Projects
Commit ab0499fc authored by Brian Anderson's avatar Brian Anderson
Browse files

Add prelimenary wasm32 support

parent 9b757034
No related branches found
No related tags found
No related merge requests found
......@@ -39,7 +39,9 @@ cfg_if! {
} else if #[cfg(any(target_arch = "arm"))] {
mod arm;
pub use self::arm::*;
} else if #[cfg(any(target_arch = "asmjs"))] {
} else if #[cfg(any(target_arch = "asmjs", target_arch = "wasm32"))] {
// For the time being asmjs and wasm32 are the same, and both
// backed by identical emscripten runtimes
mod asmjs;
pub use self::asmjs::*;
} else {
......
......@@ -235,7 +235,8 @@ cfg_if! {
} else if #[cfg(any(target_arch = "x86",
target_arch = "mips",
target_arch = "arm",
target_arch = "asmjs"))] {
target_arch = "asmjs",
target_arch = "wasm32"))] {
mod b32;
pub use self::b32::*;
} else { }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment