Skip to content

Commit

Permalink
Fix i686-pc-windows-gnu missing dbghelp module
Browse files Browse the repository at this point in the history
  • Loading branch information
wesleywiser committed Oct 23, 2023
1 parent 3c5ca12 commit 44a71e5
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,11 @@ mod lock {
}
}

#[cfg(all(windows, target_env = "msvc", not(target_vendor = "uwp")))]
#[cfg(all(
windows,
any(target_env = "msvc", all(target_env = "gnu", target_arch = "x86")),
not(target_vendor = "uwp")
))]
mod dbghelp;
#[cfg(windows)]
mod windows;

0 comments on commit 44a71e5

Please sign in to comment.