2006-06-27 03:44:04 +03:00
|
|
|
#
|
|
|
|
# Copyright (C) 2006 OpenWrt.org
|
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
2005-03-06 05:34:52 +02:00
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
2006-06-21 09:19:43 +03:00
|
|
|
PKG_NAME:=binutils
|
2007-08-07 03:04:25 +03:00
|
|
|
PKG_VERSION:=$(strip $(subst ",, $(CONFIG_BINUTILS_VERSION)))
|
|
|
|
#"))
|
2005-03-06 05:34:52 +02:00
|
|
|
|
2006-06-28 20:52:04 +03:00
|
|
|
PKG_SOURCE_URL:=http://ftp.gnu.org/gnu/binutils/ \
|
2005-07-20 17:58:27 +03:00
|
|
|
ftp://gatekeeper.dec.com/pub/GNU/ \
|
|
|
|
ftp://ftp.uu.net/archive/systems/gnu/ \
|
|
|
|
ftp://ftp.eu.uu.net/pub/gnu/ \
|
|
|
|
ftp://ftp.funet.fi/pub/gnu/prep/ \
|
|
|
|
ftp://ftp.leo.org/pub/comp/os/unix/gnu/
|
2005-08-15 21:26:17 +03:00
|
|
|
|
2006-06-21 09:19:43 +03:00
|
|
|
PKG_SOURCE:=binutils-$(PKG_VERSION).tar.bz2
|
2007-06-28 10:20:42 +03:00
|
|
|
PATCH_DIR:=./patches/$(PKG_VERSION)
|
2007-08-07 03:04:25 +03:00
|
|
|
STAGING_DIR_HOST:=$(TOOLCHAIN_DIR)
|
|
|
|
BUILD_DIR_HOST:=$(BUILD_DIR_TOOLCHAIN)
|
2005-07-20 17:58:27 +03:00
|
|
|
|
2006-06-21 09:19:43 +03:00
|
|
|
include $(INCLUDE_DIR)/host-build.mk
|
2005-07-20 17:58:27 +03:00
|
|
|
|
2008-04-13 02:14:42 +03:00
|
|
|
EXTRA_TARGET=$(if $(CONFIG_EXTRA_TARGET_ARCH),--enable-targets=$(call qstrip,$(CONFIG_EXTRA_TARGET_ARCH_NAME))-linux-uclibc)
|
|
|
|
|
2006-06-21 09:19:43 +03:00
|
|
|
define Build/Configure
|
2007-12-28 20:13:08 +02:00
|
|
|
$(CP) $(SCRIPT_DIR)/config.{guess,sub} $(PKG_BUILD_DIR)/
|
2006-06-21 09:19:43 +03:00
|
|
|
(cd $(PKG_BUILD_DIR); \
|
|
|
|
./configure \
|
2007-08-07 03:04:25 +03:00
|
|
|
--prefix=$(STAGING_DIR_HOST) \
|
2005-07-20 17:58:27 +03:00
|
|
|
--build=$(GNU_HOST_NAME) \
|
|
|
|
--host=$(GNU_HOST_NAME) \
|
|
|
|
--target=$(REAL_GNU_TARGET_NAME) \
|
|
|
|
--disable-werror \
|
2006-06-21 09:19:43 +03:00
|
|
|
--disable-nls \
|
2008-04-13 02:14:42 +03:00
|
|
|
$(EXTRA_TARGET) \
|
2007-12-28 20:06:47 +02:00
|
|
|
$(SOFT_FLOAT_CONFIG_OPTION) \
|
2007-10-23 09:23:20 +03:00
|
|
|
$(call qstrip,$(CONFIG_EXTRA_BINUTILS_CONFIG_OPTIONS)) \
|
2006-06-21 09:19:43 +03:00
|
|
|
);
|
|
|
|
endef
|
2005-07-20 17:58:27 +03:00
|
|
|
|
2006-06-21 09:19:43 +03:00
|
|
|
define Build/Compile
|
2007-08-07 03:04:25 +03:00
|
|
|
$(MAKE) -C $(PKG_BUILD_DIR) all
|
2006-06-21 09:19:43 +03:00
|
|
|
endef
|
2005-07-20 17:58:27 +03:00
|
|
|
|
2006-06-21 09:19:43 +03:00
|
|
|
define Build/Install
|
2007-08-07 03:04:25 +03:00
|
|
|
$(MAKE) -C $(PKG_BUILD_DIR) install
|
2006-06-21 09:19:43 +03:00
|
|
|
endef
|
2005-07-20 17:58:27 +03:00
|
|
|
|
2006-06-21 09:19:43 +03:00
|
|
|
$(eval $(call HostBuild))
|