aboutsummaryrefslogtreecommitdiff
path: root/package/utils
diff options
context:
space:
mode:
authorAnari Jalakas <anari.jalakas@gmail.com>2023-10-07 15:16:47 +0300
committerHauke Mehrtens <hauke@hauke-m.de>2023-10-29 19:42:32 +0100
commit246b97b607e316d6acae66a23fcdf6d12c02a786 (patch)
treece62a4ab460cb829d0f959436a5c1681ef0c6b9c /package/utils
parent1925a183a3f25d2db1f10addc85ed894df14c210 (diff)
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@gmail.com>
Diffstat (limited to 'package/utils')
-rw-r--r--package/utils/lua/Makefile2
1 files changed, 2 insertions, 0 deletions
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