From d6de38a5f81f5106fce7e4b78fd0bbf153a47aba Mon Sep 17 00:00:00 2001 From: chen-jan Date: Wed, 20 Apr 2022 02:16:41 +0000 Subject: [PATCH] add support for LoongArch --- luaconf.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/luaconf.h b/luaconf.h index 2b10184..f7ebe97 100644 --- a/luaconf.h +++ b/luaconf.h @@ -54,6 +54,8 @@ #include "luaconf-mips.h" #elif defined(__riscv) #include "luaconf-riscv64.h" +#elif defined(__loongarch64) +#include "luaconf-loongarch64.h" #else #error "The lua-devel package is not usable with the architecture." #endif -- Gitee