2011-03-08 15:51:06 +08:00
|
|
|
#
|
2016-02-12 16:31:06 +08:00
|
|
|
# Copyright (C) 2006-2016 OpenWrt.org
|
2006-06-27 08:44:04 +08:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
2005-06-07 16:11:06 +08:00
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
2006-06-21 14:19:43 +08:00
|
|
|
PKG_NAME:=gdb
|
2015-11-10 20:03:59 +08:00
|
|
|
|
|
|
|
ifeq ($(CONFIG_arc),y)
|
2016-05-19 13:20:33 +08:00
|
|
|
PKG_VERSION:=arc-2016.03-gdb
|
2015-11-10 20:03:59 +08:00
|
|
|
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
2016-05-19 13:20:33 +08:00
|
|
|
PKG_SOURCE_URL:=https://github.com/foss-for-synopsys-dwc-arc-processors/binutils-gdb/archive/arc-2016.03-gdb
|
2016-12-17 00:32:10 +08:00
|
|
|
PKG_HASH:=6a91f86cc487c1548d3f5d4f29f7226d2019c0db8a63633aeabd5914a340f3f9
|
2015-11-10 20:03:59 +08:00
|
|
|
GDB_DIR:=binutils-$(PKG_NAME)-$(PKG_VERSION)
|
2016-07-14 17:47:36 +08:00
|
|
|
PATCH_DIR:=./patches-arc
|
2015-11-10 20:03:59 +08:00
|
|
|
else
|
2017-02-05 20:37:52 +08:00
|
|
|
PKG_VERSION:=7.12.1
|
2005-06-07 16:11:06 +08:00
|
|
|
|
2015-07-11 03:42:00 +08:00
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
|
|
|
|
PKG_SOURCE_URL:=@GNU/gdb
|
2017-02-05 20:37:52 +08:00
|
|
|
PKG_HASH:=4607680b973d3ec92c30ad029f1b7dbde3876869e6b3a117d8a7e90081113186
|
2015-11-10 20:03:59 +08:00
|
|
|
GDB_DIR:=$(PKG_NAME)-$(PKG_VERSION)
|
|
|
|
endif
|
|
|
|
|
|
|
|
HOST_BUILD_DIR:=$(BUILD_DIR_TOOLCHAIN)/$(GDB_DIR)
|
2005-06-07 16:11:06 +08:00
|
|
|
|
2012-09-15 22:18:13 +08:00
|
|
|
HOST_BUILD_PARALLEL:=1
|
|
|
|
|
2009-02-24 07:52:27 +08:00
|
|
|
include $(INCLUDE_DIR)/toolchain-build.mk
|
2005-06-07 16:11:06 +08:00
|
|
|
|
2015-07-11 03:42:12 +08: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 20:03:59 +08:00
|
|
|
--with-expat \
|
2015-11-11 05:11:20 +08:00
|
|
|
--without-python \
|
2015-11-10 20:03:59 +08:00
|
|
|
--disable-binutils \
|
|
|
|
--disable-ld \
|
|
|
|
--disable-gas \
|
|
|
|
--disable-sim
|
2005-06-07 16:11:06 +08:00
|
|
|
|
2009-02-22 12:37:20 +08:00
|
|
|
define Host/Install
|
2010-08-19 20:49:51 +08: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 20:48:23 +08:00
|
|
|
endef
|
|
|
|
|
2009-02-22 12:37:20 +08:00
|
|
|
define Host/Clean
|
2009-01-12 01:27:56 +08:00
|
|
|
rm -rf \
|
2009-02-22 12:37:20 +08:00
|
|
|
$(HOST_BUILD_DIR) \
|
2010-08-19 20:49:51 +08:00
|
|
|
$(TOOLCHAIN_DIR)/bin/$(TARGET_CROSS)gdb \
|
|
|
|
$(TOOLCHAIN_DIR)/bin/$(GNU_TARGET_NAME)-gdb
|
2006-06-21 14:19:43 +08:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call HostBuild))
|