Skip to content

Commit dfe4fe0

Browse files
committed
wali: Fix unknown config
`target_vendor = "wali"` no longer seems to exist, so use wasm+musl to enable the module instead. Also fix missing types in the wali module. (backport <#4773>) (cherry picked from commit 57a0228)
1 parent 63f5e44 commit dfe4fe0

File tree

2 files changed

+145
-145
lines changed

2 files changed

+145
-145
lines changed

src/unix/linux_like/linux/musl/b64/wasm32/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -681,7 +681,7 @@ pub const TOSTOP: crate::tcflag_t = 0x00000100;
681681
pub const FLUSHO: crate::tcflag_t = 0x00001000;
682682

683683
cfg_if! {
684-
if #[cfg(target_vendor = "wali")] {
684+
if #[cfg(all(target_family = "wasm", target_env = "musl"))] {
685685
mod wali;
686686
pub use self::wali::*;
687687
}

0 commit comments

Comments
 (0)