Code: Select all
C:\Daten\dragengine\src\modules\physics\bullet/BulletExtras/COLLADA_DOM/include/dae/daeWin32Platform.h:29:13: error: conflicting declaration 'typedef int intptr_t'
c:/mingw/lib/gcc/../../x86_64-w64-mingw32/include/_mingw.h:305:37: error: 'intptr_t' has a previous declaration as 'typedef long long int intptr_t'EDIT: Precision. with the #ifdef I referred to _MSC_VER. The check requires this symbol to be defined but only VC does define this. Correctly the check should be #if defined(_MSC_VER) && (existing symbol check). Then this code compiles properly.