From b5febe72bbe10e3a327fa983b06d64354a0954e0 Mon Sep 17 00:00:00 2001 From: chandde Date: Tue, 14 May 2019 17:00:48 -0700 Subject: [PATCH] Update lib.rs --- src/libtest/lib.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/libtest/lib.rs b/src/libtest/lib.rs index 26612964c30..765ee12a1d6 100644 --- a/src/libtest/lib.rs +++ b/src/libtest/lib.rs @@ -37,12 +37,12 @@ use term; // FIXME(#54291): rustc and/or LLVM don't yet support building with panic-unwind -// on aarch64-pc-windows-msvc, so we don't link libtest against +// on aarch64-pc-windows-msvc, or thumbv7a-pc-windows-msvc, so we don't link libtest against // libunwind (for the time being), even though it means that -// libtest won't be fully functional on this platform. +// libtest won't be fully functional on these platforms. // // See also: https://github.com/rust-lang/rust/issues/54190#issuecomment-422904437 -#[cfg(not(all(windows, target_arch = "aarch64")))] +#[cfg(not(any(all(windows, target_arch = "aarch64"), all(windows, target_arch = "arm"))))] extern crate panic_unwind; pub use self::ColorConfig::*; -- 2.44.0