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 compiling on Windows with mingw-64 gcc, the function pointers created in chipmunk_ffi are not exported as expected.
If I replace #define CP_EXPORT __declspec(dllexport)
with #define CP_EXPORT
in chipmunk.h in the ifdef block for WIN32 it works.
The text was updated successfully, but these errors were encountered:
When compiling on Windows with mingw-64 gcc, the function pointers created in chipmunk_ffi are not exported as expected.
If I replace
#define CP_EXPORT __declspec(dllexport)
with
#define CP_EXPORT
in chipmunk.h in the ifdef block for WIN32 it works.
The text was updated successfully, but these errors were encountered: