I'm trying to build codeblocks on ARM (Raspberry Pi) using a recent SVN version.
A lot of the contrib plugins have this code:
#if defined(LOGGING)
 #define LOGGING 1
 #undef LOGIT
 #define LOGIT wxLogMessage
 #define TRAP asm("int3")
#endif
int3 is an x86 instruction so the compiler chokes. I can't see anywhere obvious where I can undefine LOGGING.