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
I did that and it appears to be fixed. But I did the same thing in another place as I had a similar error and now I am running into more issues:
E57SimpleData.cpp:
Errors:
undefined reference to `e57::Data3DPointsData_t::Data3DPointsData_t(e57::Data3D&)'
asmaloney
changed the title
Disabling CRCpp warnings fails when compiling with MinGW
MinGW fails to compile due to warnings
Apr 21, 2023
(From here: #245 (comment))
I think his fix in CRCpp (which is what I used here) won't work for MinGW.
@UshnaGul - can you try changing the checks in CheckedFile.cpp from
#if defined( WIN32 ) || defined( _WIN32 ) || defined( WINCE )
to
#if defined( _MSC_VER )
That should turn off the pragmas MinGW doesn't understand. Not sure if it will throw other errors though.
The text was updated successfully, but these errors were encountered: