2011-03-08 07:51:06 +00:00
|
|
|
#
|
2015-11-06 10:53:27 +00:00
|
|
|
# Copyright (C) 2006-2015 OpenWrt.org
|
2006-06-27 00:44:04 +00:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
2005-06-07 08:11:06 +00:00
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
2006-06-21 06:19:43 +00:00
|
|
|
PKG_NAME:=gdb
|
2015-11-10 12:03:59 +00:00
|
|
|
|
|
|
|
ifeq ($(CONFIG_arc),y)
|
|
|
|
PKG_VERSION:=arc-2015.06-gdb
|
|
|
|
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
|
|
PKG_SOURCE_URL:=https://github.com/foss-for-synopsys-dwc-arc-processors/binutils-gdb/archive/arc-2015.06-gdb/
|
|
|
|
PKG_MD5SUM:=d318829bfd2ed62714817f0d25706825
|
|
|
|
GDB_DIR:=binutils-$(PKG_NAME)-$(PKG_VERSION)
|
|
|
|
else
|
2015-11-06 10:53:27 +00:00
|
|
|
PKG_VERSION:=7.10
|
2005-06-07 08:11:06 +00:00
|
|
|
|
2015-07-10 19:42:00 +00:00
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
|
|
|
|
PKG_SOURCE_URL:=@GNU/gdb
|
2015-11-06 10:53:27 +00:00
|
|
|
PKG_MD5SUM:=2a35bac41fa8e10bf04f3a0dd7f7f363
|
2015-11-10 12:03:59 +00:00
|
|
|
GDB_DIR:=$(PKG_NAME)-$(PKG_VERSION)
|
|
|
|
endif
|
|
|
|
|
|
|
|
HOST_BUILD_DIR:=$(BUILD_DIR_TOOLCHAIN)/$(GDB_DIR)
|
2005-06-07 08:11:06 +00:00
|
|
|
|
2012-09-15 14:18:13 +00:00
|
|
|
HOST_BUILD_PARALLEL:=1
|
|
|
|
|
2009-02-23 23:52:27 +00:00
|
|
|
include $(INCLUDE_DIR)/toolchain-build.mk
|
2005-06-07 08:11:06 +00:00
|
|
|
|
2015-07-10 19:42:12 +00:00
|
|
|
HOST_CONFIGURE_VARS += \
|
|
|
|
gdb_cv_func_sigsetjmp=yes
|
|
|
|
|
|
|
|
HOST_CONFIGURE_ARGS = \
|
|
|
|
--prefix=$(TOOLCHAIN_DIR) \
|
|
|
|
--build=$(GNU_HOST_NAME) \
|
|
|
|
--host=$(GNU_HOST_NAME) \
|
|
|
|
--target=$(REAL_GNU_TARGET_NAME) \
|
|
|
|
--disable-werror \
|
|
|
|
--without-uiout \
|
|
|
|
--disable-tui --disable-gdbtk --without-x \
|
|
|
|
--without-included-gettext \
|
|
|
|
--enable-threads \
|
2015-11-10 12:03:59 +00:00
|
|
|
--with-expat \
|
|
|
|
--disable-binutils \
|
|
|
|
--disable-ld \
|
|
|
|
--disable-gas \
|
|
|
|
--disable-sim
|
2005-06-07 08:11:06 +00:00
|
|
|
|
2009-02-22 04:37:20 +00:00
|
|
|
define Host/Install
|
2010-08-19 12:49:51 +00:00
|
|
|
mkdir -p $(TOOLCHAIN_DIR)/bin
|
|
|
|
$(INSTALL_BIN) $(HOST_BUILD_DIR)/gdb/gdb $(TOOLCHAIN_DIR)/bin/$(TARGET_CROSS)gdb
|
|
|
|
ln -fs $(TARGET_CROSS)gdb $(TOOLCHAIN_DIR)/bin/$(GNU_TARGET_NAME)-gdb
|
|
|
|
strip $(TOOLCHAIN_DIR)/bin/$(TARGET_CROSS)gdb
|
2006-10-07 12:48:23 +00:00
|
|
|
endef
|
|
|
|
|
2009-02-22 04:37:20 +00:00
|
|
|
define Host/Clean
|
2009-01-11 17:27:56 +00:00
|
|
|
rm -rf \
|
2009-02-22 04:37:20 +00:00
|
|
|
$(HOST_BUILD_DIR) \
|
2010-08-19 12:49:51 +00:00
|
|
|
$(TOOLCHAIN_DIR)/bin/$(TARGET_CROSS)gdb \
|
|
|
|
$(TOOLCHAIN_DIR)/bin/$(GNU_TARGET_NAME)-gdb
|
2006-06-21 06:19:43 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call HostBuild))
|