Open stajilov opened 5 months ago
Looks like more of a C language compatibility error that has been finally picked up by a strict compiler rather than an incompatible ISA:
ISO C99 and later do not support implicit int [-Wimplicit-int]
@stajilov did you find a workaround? I wonder if that strictness can get turned down a bit?
This seems to work for me: gem install statistics2 -- '--with-cflags=-Wno-error=implicit-int'
I had the same issue on an intel mac and @michael-gratton's solution worked. Thanks!