2011-03-08 15:51:06 +08:00
|
|
|
#
|
2015-11-06 18:53:27 +08:00
|
|
|
# Copyright (C) 2006-2015 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)
|
|
|
|
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 18:53:27 +08:00
|
|
|
PKG_VERSION:=7.10
|
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
|
2015-11-06 18:53:27 +08:00
|
|
|
PKG_MD5SUM:=2a35bac41fa8e10bf04f3a0dd7f7f363
|
2015-11-10 20:03:59 +08:00
|
|
|
GDB_DIR:=$(PKG_NAME)-$(PKG_VERSION)
|
|
|
|
endif
|
|
|
|
|
2015-11-17 20:38:32 +08:00
|
|
|
PATCH_DIR:=./patches/$(PKG_VERSION)
|
|
|
|
|
2015-11-10 20:03:59 +08:00
|
|
|
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))
|