2010-03-14 03:50:53 +02:00
|
|
|
#
|
|
|
|
# Copyright (C) 2006-2010 OpenWrt.org
|
2009-01-13 18:27:51 +02: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
|
2009-01-16 20:36:37 +02:00
|
|
|
PKG_VERSION:=6.8
|
2010-03-14 03:50:53 +02:00
|
|
|
PKG_RELEASE:=2
|
2009-01-13 18:27:51 +02:00
|
|
|
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
2009-02-24 01:58:07 +02:00
|
|
|
PKG_SOURCE_URL:=@GNU/gdb
|
2009-01-16 20:36:37 +02:00
|
|
|
PKG_MD5SUM:=c9da266b884fb8fa54df786dfaadbc7a
|
2009-01-13 18:27:51 +02:00
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
2009-10-05 12:12:05 +03:00
|
|
|
define Package/gdb/Default
|
2009-01-13 18:27:51 +02:00
|
|
|
SECTION:=utils
|
|
|
|
CATEGORY:=Utilities
|
2010-03-14 03:50:53 +02:00
|
|
|
DEPENDS:=@!(avr32||cris)
|
2009-01-13 18:27:51 +02:00
|
|
|
endef
|
|
|
|
|
2009-10-05 12:12:05 +03:00
|
|
|
define Package/gdb
|
|
|
|
$(call Package/gdb/Default)
|
|
|
|
TITLE:=GNU Debugger
|
2010-03-14 03:50:53 +02:00
|
|
|
DEPENDS+=+libreadline +libncurses
|
2009-01-13 18:27:51 +02:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/gdb/description
|
2010-03-14 03:50:53 +02: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-13 18:27:51 +02:00
|
|
|
endef
|
|
|
|
|
2009-10-05 12:12:05 +03:00
|
|
|
define Package/gdbserver
|
|
|
|
$(call Package/gdb/Default)
|
|
|
|
TITLE:=Remote server for GNU Debugger
|
|
|
|
endef
|
|
|
|
|
2009-01-13 18:27:51 +02:00
|
|
|
define Package/gdbserver/description
|
2010-03-14 03:50:53 +02: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-13 18:27:51 +02:00
|
|
|
endef
|
|
|
|
|
2009-12-21 01:24:16 +02:00
|
|
|
# XXX: add --disable-werror to prevent build failure with arm
|
2009-02-24 01:58:07 +02:00
|
|
|
CONFIGURE_ARGS+= \
|
2009-12-21 01:24:16 +02:00
|
|
|
--with-system-readline \
|
2010-03-14 03:50:53 +02:00
|
|
|
--disable-werror
|
2009-01-13 18:27:51 +02:00
|
|
|
|
2009-02-24 01:58:07 +02:00
|
|
|
CONFIGURE_VARS+= \
|
|
|
|
ac_cv_search_tgetent="$(TARGET_LDFLAGS) -lncurses -lreadline"
|
2009-01-13 18:27:51 +02:00
|
|
|
|
|
|
|
define Build/Compile
|
|
|
|
$(MAKE) -C $(PKG_BUILD_DIR) \
|
|
|
|
DESTDIR="$(PKG_INSTALL_DIR)" \
|
2009-01-16 20:36:37 +02:00
|
|
|
CPPFLAGS="$(TARGET_CPPFLAGS)" \
|
2010-03-14 03:50:53 +02:00
|
|
|
all
|
|
|
|
$(MAKE) -C $(PKG_BUILD_DIR) \
|
|
|
|
DESTDIR="$(PKG_INSTALL_DIR)" \
|
|
|
|
CPPFLAGS="$(TARGET_CPPFLAGS)" \
|
|
|
|
install-gdb
|
2009-01-13 18:27:51 +02:00
|
|
|
endef
|
|
|
|
|
2010-03-14 03:50:53 +02:00
|
|
|
define Package/gdb/install
|
2009-01-13 18:27:51 +02:00
|
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/gdb $(1)/usr/bin/
|
|
|
|
endef
|
|
|
|
|
2010-03-14 03:50:53 +02:00
|
|
|
define Package/gdbserver/install
|
2009-01-13 18:27:51 +02:00
|
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
2009-02-24 01:58:07 +02:00
|
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/gdbserver $(1)/usr/bin/
|
2009-01-13 18:27:51 +02:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,gdb))
|
|
|
|
$(eval $(call BuildPackage,gdbserver))
|