Skip to content
Snippets Groups Projects
Commit 5feb9784 authored by Felix Fietkau's avatar Felix Fietkau
Browse files

openwrt: honour gcc extra configuration flags


Although the CONFIG_EXTRA_GCC_OPTIONS flag is available, it isn't used
anywhere.

This change adds the extra flag to both gcc configure stages.

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

SVN-Revision: 9406
parent d8e032ed
No related branches found
No related tags found
No related merge requests found
......@@ -60,6 +60,7 @@ define Stage1/Configure
--disable-nls \
--disable-libmudflap \
--disable-multilib \
$(call qstrip,$(CONFIG_EXTRA_GCC_CONFIG_OPTIONS)) \
);
endef
define Stage1/Compile
......@@ -91,6 +92,7 @@ define Stage2/Configure
--disable-nls \
--disable-libmudflap \
--disable-multilib \
$(call qstrip,$(CONFIG_EXTRA_GCC_CONFIG_OPTIONS)) \
);
endef
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment