]> git.lizzy.rs Git - rust.git/commitdiff
Update lib.rs
authorchandde <chandde@microsoft.com>
Wed, 15 May 2019 00:00:48 +0000 (17:00 -0700)
committerGitHub <noreply@github.com>
Wed, 15 May 2019 00:00:48 +0000 (17:00 -0700)
src/libtest/lib.rs

index 26612964c308fa8cd50d1cb4d25b4626ad02f5a1..765ee12a1d6730b24b44a18b93f2437118bc19f4 100644 (file)
 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::*;