Skip to content

Commit

Permalink
Auto merge of #381 - brson:wasm32, r=alexcrichton
Browse files Browse the repository at this point in the history
Add prelimenary wasm32 support

For the moment there's nothing different about the emscripten libc implementations for asmjs and wasm32.
  • Loading branch information
bors authored Sep 6, 2016
2 parents 9b75703 + ab0499f commit eb9a2a5
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 eb9a2a5

Please sign in to comment.