<div dir="ltr">This looks like a newlib patch we want to be sure to pick up in the next newlib hash update.<br><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">---------- Forwarded message ---------<br>From: <strong class="gmail_sendername" dir="auto">Alexey Lapshin</strong> <span dir="auto"><<a href="mailto:alexey.lapshin@espressif.com">alexey.lapshin@espressif.com</a>></span><br>Date: Mon, Jul 8, 2024 at 2:39 AM<br>Subject: [PATCH] stdatomic: make atomics compatible with GCC-14<br>To: <a href="mailto:newlib@sourceware.org">newlib@sourceware.org</a> <<a href="mailto:newlib@sourceware.org">newlib@sourceware.org</a>><br></div><br><br><br>
<a href="https://gcc.gnu.org/pipermail/gcc-patches/2023-September/631525.html" rel="noreferrer" target="_blank">https://gcc.gnu.org/pipermail/gcc-patches/2023-September/631525.html</a><br>
brings c_atomic and cxx_atomic definitions into GCC.<br>
This patch makes atomics type detection correct for GCC.<br>
---<br>
 newlib/libc/include/stdatomic.h | 3 ++-<br>
 1 file changed, 2 insertions(+), 1 deletion(-)<br>
<br>
diff --git a/newlib/libc/include/stdatomic.h b/newlib/libc/include/stdatomic.h<br>
index d58e795eb..fb1a7a0c2 100644<br>
--- a/newlib/libc/include/stdatomic.h<br>
+++ b/newlib/libc/include/stdatomic.h<br>
@@ -33,7 +33,8 @@<br>
 #include <sys/cdefs.h><br>
 #include <sys/_types.h><br>
<br>
-#if __has_extension(c_atomic) || __has_extension(cxx_atomic)<br>
+#if defined(__clang__) && \<br>
+    (__has_extension(c_atomic) || __has_extension(cxx_atomic))<br>
 #define        __CLANG_ATOMICS<br>
 #elif __GNUC_PREREQ__(4, 7)<br>
 #define        __GNUC_ATOMICS<br>
-- <br>
2.34.1<br>
<br>
</div></div>