[mono] Use C11 atomics in atomic.h when building with MSVC #91748
Open
Description
opened on Sep 7, 2023
There are two things we need to do:
- Pass the
/experimental:c11atomics
to the MSVC compiler for the runtime build - Use C++23 when building our C++ files (they may include
"atomic.h"
which includes<stdatomic.h>
which errors out in MSVC in C++ mode unless you're using at least C++23)
Activity