From 9b51918277ea81afd19abccc988201bf088199f6 Mon Sep 17 00:00:00 2001 From: florian Date: Wed, 19 Sep 2012 15:13:50 +0000 Subject: [PATCH] [package] gdb: gdbserver package dependency fix (#11179) In the current trunk, gdbserver is not building anymore (with EGLIBC 2.15 selected) due to a missing dependency: Package gdbserver is missing dependencies for the following libraries: libthread_db.so.1 In order to fix it, the system shared lib libthread_db.so.1 is copied from the toolchain lib dir into the gdb package target structure (/usr/lib) to pass the dependency checks. This patch was (quickly) reviewed by Paul Fertser on IRC. Signed-off-by: xxiao Signed-off-by: Matthieu Boujonnier git-svn-id: svn://svn.openwrt.org/openwrt/trunk@33479 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- package/gdb/Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/package/gdb/Makefile b/package/gdb/Makefile index 879ba3d1c8..cf0b9ea253 100644 --- a/package/gdb/Makefile +++ b/package/gdb/Makefile @@ -77,6 +77,10 @@ endef define Package/gdbserver/install $(INSTALL_DIR) $(1)/usr/bin $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/gdbserver $(1)/usr/bin/ +ifneq ($(CONFIG_USE_EGLIBC),) + $(INSTALL_DIR) $(1)/usr/lib + $(CP) $(TOOLCHAIN_DIR)/lib/libthread_db* $(1)/usr/lib +endif endef $(eval $(call BuildPackage,gdb)) -- 2.11.0