Skip to content

Commit b5febe7

Browse files
authored
Update lib.rs
1 parent 372be4f commit b5febe7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/libtest/lib.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,12 @@ extern crate libc;
3737
use term;
3838

3939
// FIXME(#54291): rustc and/or LLVM don't yet support building with panic-unwind
40-
// on aarch64-pc-windows-msvc, so we don't link libtest against
40+
// on aarch64-pc-windows-msvc, or thumbv7a-pc-windows-msvc, so we don't link libtest against
4141
// libunwind (for the time being), even though it means that
42-
// libtest won't be fully functional on this platform.
42+
// libtest won't be fully functional on these platforms.
4343
//
4444
// See also: https://github.com/rust-lang/rust/issues/54190#issuecomment-422904437
45-
#[cfg(not(all(windows, target_arch = "aarch64")))]
45+
#[cfg(not(any(all(windows, target_arch = "aarch64"), all(windows, target_arch = "arm"))))]
4646
extern crate panic_unwind;
4747

4848
pub use self::ColorConfig::*;

0 commit comments

Comments
 (0)