File tree Expand file tree Collapse file tree 3 files changed +15
-3
lines changed Expand file tree Collapse file tree 3 files changed +15
-3
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ _LIBCPP_PUSH_MACROS
2828#include < __undef_macros>
2929
3030// TODO: Find out how altivec changes things and allow vectorizations there too.
31- #if _LIBCPP_STD_VER >= 14 && defined(_LIBCPP_CLANG_VER) && !defined(__ALTIVEC__)
31+ #if _LIBCPP_STD_VER >= 14 && defined(_LIBCPP_CLANG_VER) && _LIBCPP_CLANG_VER >= 1700 && !defined(__ALTIVEC__)
3232# define _LIBCPP_HAS_ALGORITHM_VECTOR_UTILS 1
3333#else
3434# define _LIBCPP_HAS_ALGORITHM_VECTOR_UTILS 0
Original file line number Diff line number Diff line change 3333// Warn if a compiler version is used that is not supported anymore
3434// LLVM RELEASE Update the minimum compiler versions
3535# if defined(_LIBCPP_CLANG_VER)
36- # if _LIBCPP_CLANG_VER < 1700
37- # warning "Libc++ only supports Clang 17 and later"
36+ # if _LIBCPP_CLANG_VER < 1600
37+ # warning "Libc++ only supports Clang 16 and later"
3838# endif
3939# elif defined(_LIBCPP_APPLE_CLANG_VER)
4040# if _LIBCPP_APPLE_CLANG_VER < 1500
Original file line number Diff line number Diff line change @@ -173,6 +173,18 @@ steps:
173173 os : freebsd
174174 << : *common
175175
176+ - group : ' :openbsd: OpenBSD'
177+ steps :
178+ - label : OpenBSD -current amd64
179+ command : libcxx/utils/ci/run-buildbot generic-cxx17
180+ env :
181+ CC : clang
182+ CXX : clang++
183+ agents :
184+ queue : libcxx-builders
185+ os : openbsd
186+ << : *common
187+
176188- group : ' :android: Android'
177189 steps :
178190 - label : Android 5.0, x86 NDK
You can’t perform that action at this time.
0 commit comments