]> git.ipfire.org Git - thirdparty/LuaJIT.git/commitdiff
Properly fail unsupported cross-compile to MIPS64.
authorMike Pall <mike>
Wed, 25 Feb 2015 17:02:31 +0000 (18:02 +0100)
committerMike Pall <mike>
Wed, 25 Feb 2015 17:02:31 +0000 (18:02 +0100)
src/lj_arch.h

index 2769086ce427489fdb709908926426eff27f4ffb..e775925e11530a8ffd61fb61563f0bceb7ba83bd 100644 (file)
 #if defined(__mips_soft_float)
 #error "No support for MIPS CPUs without FPU"
 #endif
+#if defined(_LP64)
+#error "No support for MIPS64"
+#endif
 #endif
 #endif