We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5ad5aca commit f2bf92aCopy full SHA for f2bf92a
src/libtest/lib.rs
@@ -45,9 +45,17 @@
45
extern crate getopts;
46
#[cfg(any(unix, target_os = "cloudabi"))]
47
extern crate libc;
48
-extern crate panic_unwind;
49
extern crate term;
50
+// FIXME(#54291): rustc and/or LLVM don't yet support building with panic-unwind
51
+// on aarch64-pc-windows-msvc, so we don't link libtest against
52
+// libunwind (for the time being), even though it means that
53
+// libtest won't be fully functional on this platform.
54
+//
55
+// See also: https://github.com/rust-lang/rust/issues/54190#issuecomment-422904437
56
+#[cfg(not(all(windows, target_arch = "aarch64")))]
57
+extern crate panic_unwind;
58
+
59
pub use self::TestFn::*;
60
pub use self::ColorConfig::*;
61
pub use self::TestResult::*;
0 commit comments