2010-03-14 09:50:53 +08:00
|
|
|
#
|
2012-02-15 04:13:28 +08:00
|
|
|
# Copyright (C) 2006-2012 OpenWrt.org
|
2009-01-14 00:27:51 +08:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=gdb
|
2012-10-30 03:25:26 +08:00
|
|
|
PKG_VERSION:=7.5
|
|
|
|
PKG_RELEASE:=1
|
2009-01-14 00:27:51 +08:00
|
|
|
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
2009-02-24 07:58:07 +08:00
|
|
|
PKG_SOURCE_URL:=@GNU/gdb
|
2012-10-30 03:25:26 +08:00
|
|
|
PKG_MD5SUM:=24a6779a9fe0260667710de1b082ef61
|
2009-01-14 00:27:51 +08:00
|
|
|
|
2012-10-30 03:25:26 +08:00
|
|
|
PKG_BUILD_PARALLEL:=1
|
|
|
|
PKG_INSTALL:=1
|
2010-10-10 05:32:38 +08:00
|
|
|
|
2009-01-14 00:27:51 +08:00
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
2009-10-05 17:12:05 +08:00
|
|
|
define Package/gdb/Default
|
2012-11-22 04:26:51 +08:00
|
|
|
SECTION:=devel
|
|
|
|
CATEGORY:=Development
|
2013-02-27 00:39:59 +08:00
|
|
|
DEPENDS:=@!(avr32||cris) +!USE_MUSL:libthread-db +PACKAGE_zlib:zlib
|
2010-04-23 19:27:29 +08:00
|
|
|
URL:=http://www.gnu.org/software/gdb/
|
2009-01-14 00:27:51 +08:00
|
|
|
endef
|
|
|
|
|
2009-10-05 17:12:05 +08:00
|
|
|
define Package/gdb
|
|
|
|
$(call Package/gdb/Default)
|
|
|
|
TITLE:=GNU Debugger
|
2012-11-19 22:37:22 +08:00
|
|
|
DEPENDS+=+libreadline +libncurses +zlib
|
2009-01-14 00:27:51 +08:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/gdb/description
|
2010-03-14 09:50:53 +08:00
|
|
|
GDB, the GNU Project debugger, allows you to see what is going on `inside'
|
|
|
|
another program while it executes -- or what another program was doing at the
|
|
|
|
moment it crashed.
|
2009-01-14 00:27:51 +08:00
|
|
|
endef
|
|
|
|
|
2009-10-05 17:12:05 +08:00
|
|
|
define Package/gdbserver
|
|
|
|
$(call Package/gdb/Default)
|
|
|
|
TITLE:=Remote server for GNU Debugger
|
|
|
|
endef
|
|
|
|
|
2009-01-14 00:27:51 +08:00
|
|
|
define Package/gdbserver/description
|
2010-03-14 09:50:53 +08:00
|
|
|
GDBSERVER is a program that allows you to run GDB on a different machine than the
|
|
|
|
one which is running the program being debugged.
|
2009-01-14 00:27:51 +08:00
|
|
|
endef
|
|
|
|
|
2009-12-21 07:24:16 +08:00
|
|
|
# XXX: add --disable-werror to prevent build failure with arm
|
2009-02-24 07:58:07 +08:00
|
|
|
CONFIGURE_ARGS+= \
|
2009-12-21 07:24:16 +08:00
|
|
|
--with-system-readline \
|
2011-10-09 22:11:33 +08:00
|
|
|
--without-expat \
|
2010-03-14 09:50:53 +08:00
|
|
|
--disable-werror
|
2009-01-14 00:27:51 +08:00
|
|
|
|
2009-02-24 07:58:07 +08:00
|
|
|
CONFIGURE_VARS+= \
|
|
|
|
ac_cv_search_tgetent="$(TARGET_LDFLAGS) -lncurses -lreadline"
|
2009-01-14 00:27:51 +08:00
|
|
|
|
|
|
|
define Build/Compile
|
2012-09-23 17:50:01 +08:00
|
|
|
+$(MAKE) $(PKG_JOBS) -C $(PKG_BUILD_DIR) \
|
2009-01-14 00:27:51 +08:00
|
|
|
DESTDIR="$(PKG_INSTALL_DIR)" \
|
2009-01-17 02:36:37 +08:00
|
|
|
CPPFLAGS="$(TARGET_CPPFLAGS)" \
|
2010-03-14 09:50:53 +08:00
|
|
|
all
|
2012-10-30 03:25:26 +08:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Install
|
2010-03-14 09:50:53 +08:00
|
|
|
$(MAKE) -C $(PKG_BUILD_DIR) \
|
|
|
|
DESTDIR="$(PKG_INSTALL_DIR)" \
|
|
|
|
CPPFLAGS="$(TARGET_CPPFLAGS)" \
|
|
|
|
install-gdb
|
2009-01-14 00:27:51 +08:00
|
|
|
endef
|
|
|
|
|
2010-03-14 09:50:53 +08:00
|
|
|
define Package/gdb/install
|
2009-01-14 00:27:51 +08:00
|
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/gdb $(1)/usr/bin/
|
|
|
|
endef
|
|
|
|
|
2010-03-14 09:50:53 +08:00
|
|
|
define Package/gdbserver/install
|
2009-01-14 00:27:51 +08:00
|
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
2009-02-24 07:58:07 +08:00
|
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/gdbserver $(1)/usr/bin/
|
2009-01-14 00:27:51 +08:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,gdb))
|
|
|
|
$(eval $(call BuildPackage,gdbserver))
|