Skip to content

Commit

Permalink
add support for all wasm32 targets
Browse files Browse the repository at this point in the history
  • Loading branch information
fkohlgrueber authored and soc committed Jul 27, 2019
1 parent fec9e32 commit a3415a8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ cfg_if! {
} else if #[cfg(any(target_os = "macos", target_os = "ios"))] {
mod mac;
use mac as sys;
} else if #[cfg(target_os = "wasi")] {
mod wasi;
use wasi as sys;
} else if #[cfg(target_arch = "wasm32")] {
mod wasm;
use wasm as sys;
} else {
mod lin;
use lin as sys;
Expand Down
File renamed without changes.

0 comments on commit a3415a8

Please sign in to comment.