diff --git a/lua.spec b/lua.spec index 7989b1ad80374438dd5d337e4f0facfb420cecc2..3a22709acfcfd8dcc9aed3fa99481ebd1ddb0e5a 100644 --- a/lua.spec +++ b/lua.spec @@ -6,7 +6,7 @@ Name: lua Version: 5.4.3 -Release: 9 +Release: 10 Summary: A powerful, efficient, lightweight, embeddable scripting language License: MIT URL: http://www.lua.org/ @@ -141,6 +141,9 @@ LD_LIBRARY_PATH=$RPM_BUILD_ROOT/%{_libdir} $RPM_BUILD_ROOT/%{_bindir}/lua -e"_U= %{_mandir}/man1/lua*.1* %changelog +* Mon Dec 26 2022 liyanan - 5.4.3-10 +- add support for LoongArch + * Wed Sep 21 2022 renhongxun - 5.4.3-9 - bugfix with upstream patch diff --git a/luaconf.h b/luaconf.h index 2b1018495a18ef8ed6874c9f1fbcd54fb3bc2303..f7ebe97baaafc76439c5a6cac8c3c2cdc0220d03 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