2011-03-08 07:51:06 +00:00
|
|
|
#
|
2016-02-12 08:31:06 +00:00
|
|
|
# Copyright (C) 2006-2016 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)
|
2017-07-12 15:00:31 +00:00
|
|
|
PKG_VERSION:=arc-2017.03-gdb
|
2015-11-10 12:03:59 +00:00
|
|
|
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
2017-07-12 15:00:31 +00:00
|
|
|
PKG_SOURCE_URL:=https://github.com/foss-for-synopsys-dwc-arc-processors/binutils-gdb/archive/arc-2017.03-gdb
|
|
|
|
PKG_HASH:=f47930161e9e99c46ab018dabbf56024739dda29c51f92495eaa0d4d7e3511f6
|
2015-11-10 12:03:59 +00:00
|
|
|
GDB_DIR:=binutils-$(PKG_NAME)-$(PKG_VERSION)
|
2016-07-14 09:47:36 +00:00
|
|
|
PATCH_DIR:=./patches-arc
|
2015-11-10 12:03:59 +00:00
|
|
|
else
|
2017-09-25 20:16:37 +00:00
|
|
|
PKG_VERSION:=7.12.1
|
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
|
2017-09-25 20:16:37 +00:00
|
|
|
PKG_HASH:=4607680b973d3ec92c30ad029f1b7dbde3876869e6b3a117d8a7e90081113186
|
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 \
|
2015-11-10 21:11:20 +00:00
|
|
|
--without-python \
|
2015-11-10 12:03:59 +00:00
|
|
|
--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))
|