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
When building against Apple Silicon, SANE fails to build due to the size of long double being the same as double: static_assert failed due to requirement 'sizeof(long double) == 16' "unexpected long double size"
This might require creation of a struct, or finding a different floating type.
mpw/toolbox/sane.cpp:176:3: error: static_assert
failed due to requirement 'sizeof(long double) == 16' "unexpected long
double size"
static_assert(sizeof(long double) == 16, "unexpected lon...
^ ~~~~~~~~~~~~~~~~~~~~~~~~~
The text was updated successfully, but these errors were encountered:
When building against Apple Silicon, SANE fails to build due to the size of
long double
being the same asdouble
: static_assert failed due to requirement 'sizeof(long double) == 16' "unexpected long double size"This might require creation of a struct, or finding a different floating type.
The text was updated successfully, but these errors were encountered: