[openwrt/openwrt] lua: opt-out of lto usage

LEDE Commits lede-commits at lists.infradead.org
Mon Oct 30 16:50:22 PDT 2023


hauke pushed a commit to openwrt/openwrt.git, branch openwrt-23.05:
https://git.openwrt.org/f1ea45f85325490dd5c250bfc9b2ba927b49ac6e

commit f1ea45f85325490dd5c250bfc9b2ba927b49ac6e
Author: Anari Jalakas <anari.jalakas at gmail.com>
AuthorDate: Sat Oct 7 15:16:47 2023 +0300

    lua: opt-out of lto usage
    
    This fixes building with USE_LTO enabled.
    
    <artificial>:(.text+0xcc8): relocation R_MIPS16_26 against `luaL_argerror' cannot be used when making a shared object; recompile with -fPIC
    ./openwrt/staging_dir/toolchain-mips_24kc_gcc-12.3.0_musl/lib/gcc/mips-openwrt-linux-musl/12.3.0/../../../../mips-openwrt-linux-musl/bin/ld.bfd: non-dynamic relocations refer to dynamic symbol strcpy
    ./openwrt/staging_dir/toolchain-mips_24kc_gcc-12.3.0_musl/lib/gcc/mips-openwrt-linux-musl/12.3.0/../../../../mips-openwrt-linux-musl/bin/ld.bfd: failed to set dynamic section sizes: bad value
    collect2: error: ld returned 1 exit status
    
    Signed-off-by: Anari Jalakas <anari.jalakas at gmail.com>
    (cherry picked from commit 246b97b607e316d6acae66a23fcdf6d12c02a786)
---
 package/utils/lua/Makefile | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/package/utils/lua/Makefile b/package/utils/lua/Makefile
index 9496ffb366..46e7bb0dcd 100644
--- a/package/utils/lua/Makefile
+++ b/package/utils/lua/Makefile
@@ -21,6 +21,8 @@ PKG_LICENSE:=MIT
 PKG_LICENSE_FILES:=COPYRIGHT
 PKG_CPE_ID:=cpe:/a:lua:lua
 
+PKG_BUILD_FLAGS:=no-lto
+
 HOST_PATCH_DIR := ./patches-host
 
 include $(INCLUDE_DIR)/package.mk




More information about the lede-commits mailing list