You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Despite having __GNUC__ set to 4, the standard library of the latest version of PCC doesn't have __sync_bool_compare_and_swap(). The simplest solution would be to explicitly exclude it:
I have a feeling there are other compilers that define __GNUC__ that aren't fully compatible with it (e.g. Clang's function attributes differ). This may bite us later.
The text was updated successfully, but these errors were encountered:
Despite having
__GNUC__
set to 4, the standard library of the latest version of PCC doesn't have__sync_bool_compare_and_swap()
. The simplest solution would be to explicitly exclude it:I have a feeling there are other compilers that define
__GNUC__
that aren't fully compatible with it (e.g. Clang's function attributes differ). This may bite us later.The text was updated successfully, but these errors were encountered: