Add check for unsupported MIPS soft-float targets.

This commit is contained in:
Mike Pall 2012-08-30 10:31:26 +02:00
parent ff00a78f3a
commit d3699997fa

View File

@ -318,6 +318,10 @@
#if defined(_LP64) #if defined(_LP64)
#error "No support for PowerPC 64 bit mode" #error "No support for PowerPC 64 bit mode"
#endif #endif
#elif LJ_TARGET_MIPS
#if defined(__mips_soft_float)
#error "No support for MIPS CPUs without FPU"
#endif
#endif #endif
#endif #endif