mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-19 00:56:41 +00:00
[libc++] Update Clang version check in __config (#71849)
We only support Clang >= 16, but we seem to have forgotten to update the version check in __config to reflect that.
This commit is contained in:
parent
444cb2f332
commit
ea89965b3c
@ -33,8 +33,8 @@
|
||||
// Warn if a compiler version is used that is not supported anymore
|
||||
// LLVM RELEASE Update the minimum compiler versions
|
||||
# if defined(_LIBCPP_CLANG_VER)
|
||||
# if _LIBCPP_CLANG_VER < 1500
|
||||
# warning "Libc++ only supports Clang 15 and later"
|
||||
# if _LIBCPP_CLANG_VER < 1600
|
||||
# warning "Libc++ only supports Clang 16 and later"
|
||||
# endif
|
||||
# elif defined(_LIBCPP_APPLE_CLANG_VER)
|
||||
# if _LIBCPP_APPLE_CLANG_VER < 1500
|
||||
|
Loading…
x
Reference in New Issue
Block a user