We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c2a5c3a commit 7c60236Copy full SHA for 7c60236
library/panic_unwind/src/lib.rs
@@ -42,7 +42,8 @@ cfg_if::cfg_if! {
42
// L4Re is unix family but does not yet support unwinding.
43
#[path = "dummy.rs"]
44
mod real_imp;
45
- } else if #[cfg(target_env = "msvc")] {
+ } else if #[cfg(all(target_env = "msvc", not(target_arch = "arm")))] {
46
+ // LLVM does not support unwinding on 32 bit ARM msvc (thumbv7a-pc-windows-msvc)
47
#[path = "seh.rs"]
48
49
} else if #[cfg(any(
0 commit comments