Status: New Owner: ---- New issue 692 by ckhardin: MIPS Compiler definition http://code.google.com/p/v8/issues/detail?id=692
Simple patch to globals.h for mips compiler definition. Index: src/globals.h =================================================================== --- src/globals.h (revision 4556) +++ src/globals.h (working copy) @@ -46,7 +46,7 @@ #elif defined(__ARMEL__) #define V8_HOST_ARCH_ARM 1 #define V8_HOST_ARCH_32_BIT 1 -#elif defined(_MIPS_ARCH_MIPS32R2) +#elif defined(_MIPS_ARCH_MIPS32R2) || defined(__mips__) #define V8_HOST_ARCH_MIPS 1 #define V8_HOST_ARCH_32_BIT 1 #else -- v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev
