diff options
author | Felix Fietkau <nbd@openwrt.org> | 2009-01-13 16:27:51 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2009-01-13 16:27:51 +0000 |
commit | abeebe75f4a0f53f125a213793f5dbf49f823663 (patch) | |
tree | f14b16864905575a8b820592899fa610c3b8c44a /package/gdb/Makefile | |
parent | bdd0df792abfc71d6db1fc6c05956d6114994d79 (diff) | |
download | upstream-abeebe75f4a0f53f125a213793f5dbf49f823663.tar.gz upstream-abeebe75f4a0f53f125a213793f5dbf49f823663.tar.bz2 upstream-abeebe75f4a0f53f125a213793f5dbf49f823663.zip |
replace the gdbserver package with a full gdb package that also includes gdbserver
SVN-Revision: 14024
Diffstat (limited to 'package/gdb/Makefile')
-rw-r--r-- | package/gdb/Makefile | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/package/gdb/Makefile b/package/gdb/Makefile new file mode 100644 index 0000000000..a2d5c85348 --- /dev/null +++ b/package/gdb/Makefile @@ -0,0 +1,66 @@ +# Copyright (C) 2006 OpenWrt.org +# +# This is free software, licensed under the GNU General Public License v2. +# See /LICENSE for more information. +# +# $Id$ + +include $(TOPDIR)/rules.mk + +PKG_NAME:=gdb +PKG_VERSION:=6.3 +PKG_RELEASE:=1 + +PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2 +PKG_MD5SUM:=05b928f41fa5b482e49ca2c24762a0ae +PKG_SOURCE_URL:=http://ftp.gnu.org/gnu/gdb +PKG_CAT:=bzcat + +include $(INCLUDE_DIR)/package.mk + +define Package/gdb + SECTION:=utils + CATEGORY:=Utilities + DEPENDS:=+libreadline +libncurses + TITLE:=GNU Debugger +endef + +define Package/gdbserver + SECTION:=utils + CATEGORY:=Utilities + TITLE:=Remote server for GNU Debugger +endef + +define Package/gdb/description + GNU debugger +endef + +define Package/gdbserver/description + GDBSERVER is a program that allows you to run GDB on a different machine + than the one which is running the program being debugged. +endef + +TARGET_CPPFLAGS += -I$(STAGING_DIR)/usr/include +TARGET_LDFLAGS += -L$(STAGING_DIR)/usr/lib + +export ac_cv_search_tgetent=$(TARGET_LDFLAGS) -lncurses -lreadline + +define Build/Compile + $(MAKE) -C $(PKG_BUILD_DIR) \ + DESTDIR="$(PKG_INSTALL_DIR)" \ + all install-gdb +endef + +define Package/gdb/install + $(INSTALL_DIR) $(1)/usr/bin + $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/gdb $(1)/usr/bin/ +endef + +define Package/gdbserver/install + $(INSTALL_DIR) $(1)/usr/bin + $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/gdb $(1)/usr/bin/ +endef + +$(eval $(call BuildPackage,gdb)) +$(eval $(call BuildPackage,gdbserver)) + |