File tree 2 files changed +5
-2
lines changed
src/unix/notbsd/linux/musl
2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -39,7 +39,9 @@ cfg_if! {
39
39
} else if #[ cfg( any( target_arch = "arm" ) ) ] {
40
40
mod arm;
41
41
pub use self :: arm:: * ;
42
- } else if #[ cfg( any( target_arch = "asmjs" ) ) ] {
42
+ } 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
43
45
mod asmjs;
44
46
pub use self :: asmjs:: * ;
45
47
} else {
Original file line number Diff line number Diff line change @@ -235,7 +235,8 @@ cfg_if! {
235
235
} else if #[ cfg( any( target_arch = "x86" ,
236
236
target_arch = "mips" ,
237
237
target_arch = "arm" ,
238
- target_arch = "asmjs" ) ) ] {
238
+ target_arch = "asmjs" ,
239
+ target_arch = "wasm32" ) ) ] {
239
240
mod b32;
240
241
pub use self :: b32:: * ;
241
242
} else { }
You can’t perform that action at this time.
0 commit comments