[libcxx-commits] [PATCH] D158214: [libc++] Warn if an unsupported compiler is used
Louis Dionne via Phabricator via libcxx-commits
libcxx-commits at lists.llvm.org
Tue Sep 19 15:08:34 PDT 2023
ldionne added inline comments.
================
Comment at: libcxx/include/__config:36
+# if defined(_LIBCPP_CLANG_VER)
+# if _LIBCPP_CLANG_VER < 1600
+# warning "Libc++ only supports Clang 16 and later"
----------------
For now, can we do this? It would allow merging this patch and then I can change the number when I land https://github.com/llvm/llvm-project/pull/66406.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D158214/new/
https://reviews.llvm.org/D158214
More information about the libcxx-commits
mailing list