Skip to content

Commit

Permalink
Add prelimenary wasm32 support
Browse files Browse the repository at this point in the history
  • Loading branch information
brson committed Sep 6, 2016
1 parent 9b75703 commit ab0499f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 3 additions & 1 deletion src/unix/notbsd/linux/musl/b32/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
3 changes: 2 additions & 1 deletion src/unix/notbsd/linux/musl/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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 { }
Expand Down

0 comments on commit ab0499f

Please sign in to comment.