Skip to content

Commit

Permalink
Merge pull request #571 from wesleywiser/fix_i686-pc-windows-gnu
Browse files Browse the repository at this point in the history
Fix i686-pc-windows-gnu missing dbghelp module
  • Loading branch information
ChrisDenton authored Oct 23, 2023
2 parents 3c5ca12 + 44a71e5 commit e9da96e
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 e9da96e

Please sign in to comment.