[libcxx-commits] [libcxx] [libc++] Add CI job testing on OpenBSD (PR #106315)

Nikolas Klauser via libcxx-commits libcxx-commits at lists.llvm.org
Wed Aug 28 01:21:12 PDT 2024


================
@@ -28,7 +28,7 @@ _LIBCPP_PUSH_MACROS
 #include <__undef_macros>
 
 // TODO: Find out how altivec changes things and allow vectorizations there too.
-#if _LIBCPP_STD_VER >= 14 && defined(_LIBCPP_CLANG_VER) && !defined(__ALTIVEC__)
+#if _LIBCPP_STD_VER >= 14 && defined(_LIBCPP_CLANG_VER) && _LIBCPP_CLANG_VER >= 1700 && !defined(__ALTIVEC__)
----------------
philnik777 wrote:

We don't support anything older than Clang 17 (actually 18, since we're in the LLVM 20 phase).

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


More information about the libcxx-commits mailing list