mirror of
https://github.com/LuaJIT/LuaJIT.git
synced 2025-02-08 07:34:07 +00:00
Add check for unsupported MIPS soft-float targets.
This commit is contained in:
parent
ff00a78f3a
commit
d3699997fa
@ -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
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user