summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard W.M. Jones <rjones@redhat.com>2016-09-10 09:47:32 +0100
committerRichard W.M. Jones <rjones@redhat.com>2016-09-10 09:48:01 +0100
commit57dc5023ce9dd4097fe0e9ac64b9b3277c1d91fd (patch)
treee495d5a03a7b6bffd1a61f6740fbe661cc164e0a
parent423087435dca32fcecee9d76f048f204c084d925 (diff)
downloadlua-57dc5023ce9dd4097fe0e9ac64b9b3277c1d91fd.tar.gz
lua-57dc5023ce9dd4097fe0e9ac64b9b3277c1d91fd.tar.xz
lua-57dc5023ce9dd4097fe0e9ac64b9b3277c1d91fd.zip
luaconf.h: Add multilib support for RISC-V architecture.
Just a trivial change to make sure this doesn't break when building the .riscv64.rpm package.
-rw-r--r--luaconf.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/luaconf.h b/luaconf.h
index 7b0ae69..78dd149 100644
--- a/luaconf.h
+++ b/luaconf.h
@@ -52,6 +52,8 @@
#include "luaconf-mipsel.h"
#elif defined(__mips)
#include "luaconf-mips.h"
+#elif defined(__riscv__)
+#include "luaconf-riscv64.h"
#else
#error "The lua-devel package is not usable with the architecture."
#endif