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...
^ ~~~~~~~~~~~~~~~~~~~~~~~~~
When building against Apple Silicon, SANE fails to build due to the size of
long doublebeing 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.