diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2006-03-10 08:46:36 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2006-03-10 08:46:36 +0000 |
commit | f90e0e035b1e8e55b9da4a01fb15017e8dc1b83a (patch) | |
tree | e61003dd4d2b866663268b1d936427b42584a072 /toolchain/binutils/binutils.mk | |
parent | 6ff820d647a3b9cfddc284202aa58c6805e02f70 (diff) |
- make sure we use the proper CC for building binutils.
- add config option BR2_EXTRA_BINUTILS_CONFIG_OPTIONS for passing additional
flags to binutils configure.
Diffstat (limited to 'toolchain/binutils/binutils.mk')
-rw-r--r-- | toolchain/binutils/binutils.mk | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/toolchain/binutils/binutils.mk b/toolchain/binutils/binutils.mk index e6174d422..c5cdae0e9 100644 --- a/toolchain/binutils/binutils.mk +++ b/toolchain/binutils/binutils.mk @@ -5,6 +5,8 @@ ############################################################# BINUTILS_VERSION:=$(strip $(subst ",, $(BR2_BINUTILS_VERSION))) +EXTRA_BINUTILS_CONFIG_OPTIONS:=$(strip $(subst ",, $(BR2_EXTRA_BINUTILS_CONFIG_OPTIONS))) +#" BINUTILS_SITE:=http://ftp.kernel.org/pub/linux/devel/binutils ifeq ($(BINUTILS_VERSION),2.16) BINUTILS_SITE:=http://ftp.gnu.org/gnu/binutils/ @@ -49,6 +51,7 @@ $(BINUTILS_DIR)/.patched: $(BINUTILS_DIR)/.unpacked $(BINUTILS_DIR1)/.configured: $(BINUTILS_DIR)/.patched mkdir -p $(BINUTILS_DIR1) (cd $(BINUTILS_DIR1); \ + CC="$(HOSTCC)" \ $(BINUTILS_DIR)/configure \ --prefix=$(STAGING_DIR) \ --build=$(GNU_HOST_NAME) \ @@ -57,7 +60,8 @@ $(BINUTILS_DIR1)/.configured: $(BINUTILS_DIR)/.patched $(DISABLE_NLS) \ $(MULTILIB) \ --disable-werror \ - $(SOFT_FLOAT_CONFIG_OPTION) ); + $(SOFT_FLOAT_CONFIG_OPTION) \ + $(EXTRA_BINUTILS_CONFIG_OPTIONS)); touch $(BINUTILS_DIR1)/.configured $(BINUTILS_DIR1)/binutils/objdump: $(BINUTILS_DIR1)/.configured |