Re: [PATCH] Update minimum C compiler supported to C11 plus stdatomic.h

2025-01-10 Thread Aaron Merey
Hi Mark, On Thu, Nov 21, 2024 at 6:34 PM Mark Wielaard wrote: > > We were using a somewhat odd mix of gnu99 with a fallback atomics.h so > we could build with gcc 4.7. Lets requires a compiler that can do at > least C11 and has a stdatomic.h. So we can build against any C > standard >= C11 (inclu

[PATCH] Update minimum C compiler supported to C11 plus stdatomic.h

2024-11-21 Thread Mark Wielaard
We were using a somewhat odd mix of gnu99 with a fallback atomics.h so we could build with gcc 4.7. Lets requires a compiler that can do at least C11 and has a stdatomic.h. So we can build against any C standard >= C11 (including C17 and C23). That means GCC 4.9+. GCC 4.9 was released in 2014. The