[libcxx] [libunwind] [libc++] Harden the test suite for running against older libc++ versions (PR #214820)

Nikolas Klauser via cfe-commits cfe-commits at lists.llvm.org
Tue Aug 11 03:02:58 PDT 2026


================
@@ -13,7 +13,7 @@
 #ifdef __has_include
 #  if __has_include(<version>)
 #    include <version>
-#  else
+#  elif __has_include(<ciso646>)
----------------
philnik777 wrote:

Why did this change? I'm not aware of any implementation that didn't have `<ciso646>`.

https://github.com/llvm/llvm-project/pull/214820


More information about the cfe-commits mailing list