Closed giulioz closed 4 years ago
Mac OS Catalina changed the signature of objc_msgSend, so it has to be casted using a function pointer. The file to change is bgfx.cpp, adding this line of code:
bgfx.cpp
id (*objc_msgSend2)(id obj, SEL sel) = (id(*)(id, SEL))objc_msgSend;
Just realized that is not bigg related...
Mac OS Catalina changed the signature of objc_msgSend, so it has to be casted using a function pointer. The file to change is
bgfx.cpp
, adding this line of code: