File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed
src/unix/notbsd/linux/musl Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -39,7 +39,9 @@ cfg_if! {
3939 } else if #[ cfg( any( target_arch = "arm" ) ) ] {
4040 mod arm;
4141 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
4345 mod asmjs;
4446 pub use self :: asmjs:: * ;
4547 } else {
Original file line number Diff line number Diff line change @@ -235,7 +235,8 @@ cfg_if! {
235235 } else if #[ cfg( any( target_arch = "x86" ,
236236 target_arch = "mips" ,
237237 target_arch = "arm" ,
238- target_arch = "asmjs" ) ) ] {
238+ target_arch = "asmjs" ,
239+ target_arch = "wasm32" ) ) ] {
239240 mod b32;
240241 pub use self :: b32:: * ;
241242 } else { }
You can’t perform that action at this time.
0 commit comments