Parcourir la source

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 <[email protected]>

SVN-Revision: 9407
Felix Fietkau il y a 18 ans
Parent
commit
19a6b0fa95
2 fichiers modifiés avec 8 ajouts et 0 suppressions
  1. 7 0
      toolchain/binutils/Config.in
  2. 1 0
      toolchain/binutils/Makefile

+ 7 - 0
toolchain/binutils/Config.in

@@ -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)

+ 1 - 0
toolchain/binutils/Makefile

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