2010-03-14 01:50:53 +00:00
|
|
|
#
|
2016-02-12 08:31:11 +00:00
|
|
|
# Copyright (C) 2006-2016 OpenWrt.org
|
2009-01-13 16:27:51 +00: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
|
2022-08-27 17:53:17 +00:00
|
|
|
PKG_VERSION:=12.1
|
2023-05-17 13:08:40 +00:00
|
|
|
PKG_RELEASE:=3
|
2009-01-13 16:27:51 +00:00
|
|
|
|
2014-10-19 22:49:42 +00:00
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
|
2009-02-23 23:58:07 +00:00
|
|
|
PKG_SOURCE_URL:=@GNU/gdb
|
2022-08-27 17:53:17 +00:00
|
|
|
PKG_HASH:=0e1793bf8f2b54d53f46dea84ccfd446f48f81b297b28c4f7fc017b818d69fed
|
2009-01-13 16:27:51 +00:00
|
|
|
|
2012-10-29 19:25:26 +00:00
|
|
|
PKG_BUILD_PARALLEL:=1
|
|
|
|
PKG_INSTALL:=1
|
2014-11-02 12:20:54 +00:00
|
|
|
PKG_LICENSE:=GPL-3.0+
|
2017-09-28 02:55:46 +00:00
|
|
|
PKG_CPE_ID:=cpe:/a:gnu:gdb
|
2010-10-09 21:32:38 +00:00
|
|
|
|
2009-01-13 16:27:51 +00:00
|
|
|
include $(INCLUDE_DIR)/package.mk
|
2020-11-05 00:30:04 +00:00
|
|
|
include $(INCLUDE_DIR)/nls.mk
|
2009-01-13 16:27:51 +00:00
|
|
|
|
2009-10-05 09:12:05 +00:00
|
|
|
define Package/gdb/Default
|
2012-11-21 20:26:51 +00:00
|
|
|
SECTION:=devel
|
|
|
|
CATEGORY:=Development
|
2021-11-07 16:15:06 +00:00
|
|
|
DEPENDS:=+!USE_MUSL:libthread-db $(ICONV_DEPENDS) $(INTL_DEPENDS)
|
2019-06-17 23:43:51 +00:00
|
|
|
URL:=https://www.gnu.org/software/gdb/
|
2009-01-13 16:27:51 +00:00
|
|
|
endef
|
|
|
|
|
2009-10-05 09:12:05 +00:00
|
|
|
define Package/gdb
|
|
|
|
$(call Package/gdb/Default)
|
|
|
|
TITLE:=GNU Debugger
|
2021-11-07 16:15:06 +00:00
|
|
|
DEPENDS+=+libreadline +libncurses +zlib +libgmp
|
2009-01-13 16:27:51 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/gdb/description
|
2010-03-14 01:50:53 +00: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 16:27:51 +00:00
|
|
|
endef
|
|
|
|
|
2009-10-05 09:12:05 +00:00
|
|
|
define Package/gdbserver
|
|
|
|
$(call Package/gdb/Default)
|
|
|
|
TITLE:=Remote server for GNU Debugger
|
|
|
|
endef
|
|
|
|
|
2009-01-13 16:27:51 +00:00
|
|
|
define Package/gdbserver/description
|
2010-03-14 01:50:53 +00: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 16:27:51 +00:00
|
|
|
endef
|
|
|
|
|
2009-12-20 23:24:16 +00:00
|
|
|
# XXX: add --disable-werror to prevent build failure with arm
|
2009-02-23 23:58:07 +00:00
|
|
|
CONFIGURE_ARGS+= \
|
2009-12-20 23:24:16 +00:00
|
|
|
--with-system-readline \
|
2020-10-24 21:34:18 +00:00
|
|
|
--with-system-zlib \
|
2011-10-09 14:11:33 +00:00
|
|
|
--without-expat \
|
2015-05-24 19:15:54 +00:00
|
|
|
--without-lzma \
|
2020-10-24 21:34:49 +00:00
|
|
|
--disable-unit-tests \
|
|
|
|
--disable-ubsan \
|
2017-05-12 08:50:55 +00:00
|
|
|
--disable-sim \
|
2019-10-14 15:37:28 +00:00
|
|
|
--disable-werror \
|
2021-11-07 16:14:16 +00:00
|
|
|
--disable-source-highlight \
|
|
|
|
--without-mpc \
|
|
|
|
--without-mpfr \
|
|
|
|
--without-isl \
|
2022-12-17 21:10:39 +00:00
|
|
|
--without-xxhash \
|
2021-11-07 16:14:16 +00:00
|
|
|
--with-libgmp-prefix=$(STAGING_DIR)/usr
|
2009-01-13 16:27:51 +00:00
|
|
|
|
2009-02-23 23:58:07 +00:00
|
|
|
CONFIGURE_VARS+= \
|
|
|
|
ac_cv_search_tgetent="$(TARGET_LDFLAGS) -lncurses -lreadline"
|
2009-01-13 16:27:51 +00:00
|
|
|
|
2017-09-25 05:45:10 +00:00
|
|
|
TARGET_LDFLAGS+= \
|
2020-11-05 00:30:04 +00:00
|
|
|
$(INTL_LDFLAGS) $(if $(INTL_FULL),-lintl) \
|
2017-09-25 05:45:10 +00:00
|
|
|
-static-libstdc++ \
|
|
|
|
-Wl,--gc-sections
|
|
|
|
|
2012-10-29 19:25:26 +00:00
|
|
|
define Build/Install
|
2010-03-14 01:50:53 +00:00
|
|
|
$(MAKE) -C $(PKG_BUILD_DIR) \
|
|
|
|
DESTDIR="$(PKG_INSTALL_DIR)" \
|
|
|
|
CPPFLAGS="$(TARGET_CPPFLAGS)" \
|
2020-10-24 18:21:05 +00:00
|
|
|
install-gdb install-gdbserver
|
2009-01-13 16:27:51 +00:00
|
|
|
endef
|
|
|
|
|
2010-03-14 01:50:53 +00:00
|
|
|
define Package/gdb/install
|
2009-01-13 16:27:51 +00:00
|
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/gdb $(1)/usr/bin/
|
|
|
|
endef
|
|
|
|
|
2010-03-14 01:50:53 +00:00
|
|
|
define Package/gdbserver/install
|
2009-01-13 16:27:51 +00:00
|
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
2009-02-23 23:58:07 +00:00
|
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/gdbserver $(1)/usr/bin/
|
2009-01-13 16:27:51 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,gdb))
|
|
|
|
$(eval $(call BuildPackage,gdbserver))
|