2006-06-27 08:44:04 +08:00
|
|
|
#
|
2009-01-12 01:27:56 +08:00
|
|
|
# Copyright (C) 2006-2009 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
|
|
|
|
PKG_VERSION:=6.3
|
2005-06-07 16:11:06 +08:00
|
|
|
|
2006-06-21 14:19:43 +08:00
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
|
|
|
PKG_MD5SUM:=05b928f41fa5b482e49ca2c24762a0ae
|
|
|
|
PKG_SOURCE_URL:=http://ftp.gnu.org/gnu/gdb
|
|
|
|
PKG_CAT:=bzcat
|
2005-06-07 16:11:06 +08:00
|
|
|
|
2007-08-07 08:04:25 +08:00
|
|
|
STAGING_DIR_HOST:=$(TOOLCHAIN_DIR)
|
|
|
|
BUILD_DIR_HOST:=$(BUILD_DIR_TOOLCHAIN)
|
2005-06-07 16:11:06 +08:00
|
|
|
|
2006-06-21 14:19:43 +08:00
|
|
|
include $(INCLUDE_DIR)/host-build.mk
|
2005-06-07 16:11:06 +08:00
|
|
|
|
2009-02-22 12:37:20 +08:00
|
|
|
define Host/Configure
|
|
|
|
(cd $(HOST_BUILD_DIR); \
|
2005-06-07 16:11:06 +08:00
|
|
|
gdb_cv_func_sigsetjmp=yes \
|
2009-01-13 10:15:43 +08:00
|
|
|
CFLAGS="-O2" \
|
2009-02-22 12:37:20 +08:00
|
|
|
$(HOST_BUILD_DIR)/configure \
|
2009-01-12 01:27:56 +08:00
|
|
|
--prefix=$(TOOLCHAIN_DIR)/usr \
|
2005-06-07 16:11:06 +08:00
|
|
|
--build=$(GNU_HOST_NAME) \
|
|
|
|
--host=$(GNU_HOST_NAME) \
|
|
|
|
--target=$(REAL_GNU_TARGET_NAME) \
|
|
|
|
$(DISABLE_NLS) \
|
|
|
|
--without-uiout --disable-gdbmi \
|
|
|
|
--disable-tui --disable-gdbtk --without-x \
|
|
|
|
--without-included-gettext \
|
|
|
|
--enable-threads \
|
|
|
|
);
|
2006-06-21 14:19:43 +08:00
|
|
|
endef
|
2005-06-07 16:11:06 +08:00
|
|
|
|
2009-02-22 12:37:20 +08:00
|
|
|
define Host/Compile
|
|
|
|
$(MAKE) -C $(HOST_BUILD_DIR)
|
2006-06-21 14:19:43 +08:00
|
|
|
endef
|
2005-06-07 16:11:06 +08:00
|
|
|
|
2009-02-22 12:37:20 +08:00
|
|
|
define Host/Install
|
2009-01-12 01:27:56 +08:00
|
|
|
mkdir -p $(TOOLCHAIN_DIR)/usr/bin
|
2009-02-22 12:37:20 +08:00
|
|
|
$(INSTALL_BIN) $(HOST_BUILD_DIR)/gdb/gdb $(TOOLCHAIN_DIR)/usr/bin/$(TARGET_CROSS)gdb
|
2009-01-12 01:27:56 +08:00
|
|
|
ln -fs $(TARGET_CROSS)gdb $(TOOLCHAIN_DIR)/usr/bin/$(GNU_TARGET_NAME)-gdb
|
|
|
|
strip $(TOOLCHAIN_DIR)/usr/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) \
|
2009-01-13 10:15:43 +08:00
|
|
|
$(TOOLCHAIN_DIR)/usr/bin/$(TARGET_CROSS)gdb \
|
2009-01-12 01:27:56 +08:00
|
|
|
$(TOOLCHAIN_DIR)/usr/bin/$(GNU_TARGET_NAME)-gdb
|
2006-06-21 14:19:43 +08:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call HostBuild))
|