@saghul brought up that quickjs currently doesn't compile with msvc unless you cut out atomics.
My hunch is that this can be fixed by:
-
targeting VS 2022 for proper C11 support, and
-
switching to C11 for <stdatomic.h>, and
-
replacing the pthreads stuff with their standard counterparts from <threads.h>
@saghul brought up that quickjs currently doesn't compile with msvc unless you cut out atomics.
My hunch is that this can be fixed by:
targeting VS 2022 for proper C11 support, and
switching to C11 for
<stdatomic.h>, andreplacing the pthreads stuff with their standard counterparts from
<threads.h>