From ac3e99dd2d1a0051f89fb1338d88ea4e43bb8e3c Mon Sep 17 00:00:00 2001 From: yeqinglong Date: Wed, 26 Apr 2023 14:36:18 +0800 Subject: [PATCH] add support for sw_64 --- lua.spec | 5 ++++- luaconf.h | 2 ++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/lua.spec b/lua.spec index bda0d03..aee6733 100644 --- a/lua.spec +++ b/lua.spec @@ -6,7 +6,7 @@ Name: lua Version: 5.4.4 -Release: 1 +Release: 2 Summary: A powerful, efficient, lightweight, embeddable scripting language License: MIT URL: http://www.lua.org/ @@ -135,6 +135,9 @@ LD_LIBRARY_PATH=$RPM_BUILD_ROOT/%{_libdir} $RPM_BUILD_ROOT/%{_bindir}/lua -e"_U= %{_mandir}/man1/lua*.1* %changelog +* Wed Apr 26 2023 yeqinglong - 5.4.4-2 +- add support for sw_64 + * Thu Jan 19 2023 hubin - 5.4.4-1 - upgrade to version 5.4.4 diff --git a/luaconf.h b/luaconf.h index f7ebe97..88a38f4 100644 --- a/luaconf.h +++ b/luaconf.h @@ -38,6 +38,8 @@ #include "luaconf-arm.h" #elif defined(__alpha__) #include "luaconf-alpha.h" +#elif defined(__sw_64__) +#include "luaconf-sw_64.h" #elif defined(__sparc__) && defined (__arch64__) #include "luaconf-sparc64.h" #elif defined(__sparc__) -- Gitee