12 Oct
2013
12 Oct
'13
8:48 a.m.
On 10/12/2013 10:06 AM, Stephen Kelly wrote:
// versions check: // we don't support Metrowerks prior to version 5.3: -#if __MWERKS__ < 0x2301 +#if __MWERKS__ < 0x3207 # error "Compiler not supported or configured - please reconfigure" #endif //
I've fixed this locally to be // versions check: -// we don't support Metrowerks prior to version 5.3: -#if __MWERKS__ < 0x2301 +// we don't support Metrowerks prior to version 9.0: +#if __MWERKS__ < 0x3200 # error "Compiler not supported or configured - please reconfigure" #endif Thanks, Steve.