[libcxx-commits] [libcxx] [libc++][Android] Always redirect <stdatomic.h> to <atomic> (PR #143036)

Ryan Prichard via libcxx-commits libcxx-commits at lists.llvm.org
Sun Jun 8 16:11:57 PDT 2025


================
@@ -7,7 +7,10 @@
 //===----------------------------------------------------------------------===//
 
 // UNSUPPORTED: no-threads
-// UNSUPPORTED: c++03, c++11, c++14, c++17, c++20
+
+// On Android, libc++'s <stdatomic.h> header always redirects to <atomic>, even before C++23.
+// UNSUPPORTED: c++03
----------------
rprichard wrote:

I suppose `UNSUPPORTED` might be fine, though, because for previous language dialects, we have the incompatible_with_stdatomic.verify.cpp test already.

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


More information about the libcxx-commits mailing list