summaryrefslogtreecommitdiff
path: root/src/lj_arch.h
diff options
context:
space:
mode:
authorMike Pall <mike>2015-02-25 18:02:31 +0100
committerMike Pall <mike>2015-02-25 18:02:31 +0100
commit7ff476804ec91c587d95b6a71b718b9b6ce19768 (patch)
treeaa60dff9e5ed14179042420a99e4e4bf0cc2af85 /src/lj_arch.h
parente6b0875a7e8fa3b3fbc348636b6fa2f26a095af9 (diff)
downloadluajit2-7ff476804ec91c587d95b6a71b718b9b6ce19768.tar.gz
Properly fail unsupported cross-compile to MIPS64.
Diffstat (limited to 'src/lj_arch.h')
-rw-r--r--src/lj_arch.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/lj_arch.h b/src/lj_arch.h
index 2769086c..e775925e 100644
--- a/src/lj_arch.h
+++ b/src/lj_arch.h
@@ -340,6 +340,9 @@
#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