2 # Copyright (C) 2006-2012 OpenWrt.org
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
8 include $(TOPDIR)/rules.mk
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
15 PKG_SOURCE_URL:=@GNU/gdb
16 PKG_MD5SUM:=bd958fe9019d7c7896f29f6724a764ed
22 include $(INCLUDE_DIR)/package.mk
24 define Package/gdb/Default
27 DEPENDS:=@!(avr32||cris) +!USE_MUSL:libthread-db +PACKAGE_zlib:zlib
28 URL:=http://www.gnu.org/software/gdb/
32 $(call Package/gdb/Default)
34 DEPENDS+=+libreadline +libncurses +zlib
37 define Package/gdb/description
38 GDB, the GNU Project debugger, allows you to see what is going on `inside'
39 another program while it executes -- or what another program was doing at the
43 define Package/gdbserver
44 $(call Package/gdb/Default)
45 TITLE:=Remote server for GNU Debugger
48 define Package/gdbserver/description
49 GDBSERVER is a program that allows you to run GDB on a different machine than the
50 one which is running the program being debugged.
53 # XXX: add --disable-werror to prevent build failure with arm
55 --with-system-readline \
60 ac_cv_search_tgetent="$(TARGET_LDFLAGS) -lncurses -lreadline"
63 +$(MAKE) $(PKG_JOBS) -C $(PKG_BUILD_DIR) \
64 DESTDIR="$(PKG_INSTALL_DIR)" \
65 CPPFLAGS="$(TARGET_CPPFLAGS)" \
70 $(MAKE) -C $(PKG_BUILD_DIR) \
71 DESTDIR="$(PKG_INSTALL_DIR)" \
72 CPPFLAGS="$(TARGET_CPPFLAGS)" \
76 define Package/gdb/install
77 $(INSTALL_DIR) $(1)/usr/bin
78 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/gdb $(1)/usr/bin/
81 define Package/gdbserver/install
82 $(INSTALL_DIR) $(1)/usr/bin
83 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/gdbserver $(1)/usr/bin/
86 $(eval $(call BuildPackage,gdb))
87 $(eval $(call BuildPackage,gdbserver))