[openwrt/openwrt] gdb: fix building with NLS enabled
LEDE Commits
lede-commits at lists.infradead.org
Wed Nov 4 19:56:05 EST 2020
dangole pushed a commit to openwrt/openwrt.git, branch master:
https://git.openwrt.org/4a976beff45865d889a3a914a1ef2221400142fa
commit 4a976beff45865d889a3a914a1ef2221400142fa
Author: Daniel Golle <daniel at makrotopia.org>
AuthorDate: Thu Nov 5 00:30:04 2020 +0000
gdb: fix building with NLS enabled
Building gdb failed with CONFIG_BUILD_NLS enabled. Use nls.mk and
add the necessary dependencies for libintl and libiconv.
Signed-off-by: Daniel Golle <daniel at makrotopia.org>
---
package/devel/gdb/Makefile | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/package/devel/gdb/Makefile b/package/devel/gdb/Makefile
index e824f09e8f..17b2bb8481 100644
--- a/package/devel/gdb/Makefile
+++ b/package/devel/gdb/Makefile
@@ -21,11 +21,12 @@ PKG_LICENSE:=GPL-3.0+
PKG_CPE_ID:=cpe:/a:gnu:gdb
include $(INCLUDE_DIR)/package.mk
+include $(INCLUDE_DIR)/nls.mk
define Package/gdb/Default
SECTION:=devel
CATEGORY:=Development
- DEPENDS:=+!USE_MUSL:libthread-db +zlib
+ DEPENDS:=+!USE_MUSL:libthread-db $(ICONV_DEPENDS) $(INTL_DEPENDS)
URL:=https://www.gnu.org/software/gdb/
endef
@@ -44,7 +45,7 @@ endef
define Package/gdbserver
$(call Package/gdb/Default)
TITLE:=Remote server for GNU Debugger
- DEPENDS=@!arc
+ DEPENDS+=@!arc
endef
define Package/gdbserver/description
@@ -68,6 +69,7 @@ CONFIGURE_VARS+= \
ac_cv_search_tgetent="$(TARGET_LDFLAGS) -lncurses -lreadline"
TARGET_LDFLAGS+= \
+ $(INTL_LDFLAGS) $(if $(INTL_FULL),-lintl) \
-static-libstdc++ \
-Wl,--gc-sections
More information about the lede-commits
mailing list