We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b75703 commit ab0499fCopy full SHA for ab0499f
src/unix/notbsd/linux/musl/b32/mod.rs
@@ -39,7 +39,9 @@ cfg_if! {
39
} else if #[cfg(any(target_arch = "arm"))] {
40
mod arm;
41
pub use self::arm::*;
42
- } else if #[cfg(any(target_arch = "asmjs"))] {
+ } else if #[cfg(any(target_arch = "asmjs", target_arch = "wasm32"))] {
43
+ // For the time being asmjs and wasm32 are the same, and both
44
+ // backed by identical emscripten runtimes
45
mod asmjs;
46
pub use self::asmjs::*;
47
} else {
src/unix/notbsd/linux/musl/mod.rs
@@ -235,7 +235,8 @@ cfg_if! {
235
} else if #[cfg(any(target_arch = "x86",
236
target_arch = "mips",
237
target_arch = "arm",
238
- target_arch = "asmjs"))] {
+ target_arch = "asmjs",
239
+ target_arch = "wasm32"))] {
240
mod b32;
241
pub use self::b32::*;
242
} else { }
0 commit comments