1
0
mirror of https://git.openwrt.org/openwrt/openwrt.git synced 2024-09-29 23:51:17 +02:00

Add binutils extra configure options

Currently, we can specify extra configure options for gcc, but not
binutils.

This change adds an EXTRA_BINUTILS_CONFIG_OPTIONS config variable,
so we can add configure options for binutils.

Signed-off-by: Jeremy Kerr <jk@ozlabs.org>

SVN-Revision: 9407
This commit is contained in:
Felix Fietkau 2007-10-23 06:23:20 +00:00
parent 5feb978446
commit 19a6b0fa95
2 changed files with 8 additions and 0 deletions

@ -14,6 +14,13 @@ choice
endchoice
config EXTRA_BINUTILS_CONFIG_OPTIONS
string
prompt "Additional binutils options" if TOOLCHAINOPTS
default ""
help
Any additional binutils options you may want to include....
config BINUTILS_VERSION
string
prompt "Binutils Version" if (TOOLCHAINOPTS && NULL)

@ -33,6 +33,7 @@ define Build/Configure
--target=$(REAL_GNU_TARGET_NAME) \
--disable-werror \
--disable-nls \
$(call qstrip,$(CONFIG_EXTRA_BINUTILS_CONFIG_OPTIONS)) \
);
endef