From: Gustavo Zacarias Date: Wed, 11 Sep 2013 12:12:06 +0000 (-0300) Subject: toolchain/gcc: add elf2flt to dependencies X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=4fc45ccca5de28fec0b1f777f3b6c920b02c2dcf;p=buildroot.git toolchain/gcc: add elf2flt to dependencies Add host-elf2flt to the gcc common dependencies so we get it built after binutils but before gcc/uclibc since it's required for all packages and in some uClibc configuration scenarios. Signed-off-by: Gustavo Zacarias Signed-off-by: Peter Korsgaard --- diff --git a/package/gcc/gcc.mk b/package/gcc/gcc.mk index 6654b51674..157357cd78 100644 --- a/package/gcc/gcc.mk +++ b/package/gcc/gcc.mk @@ -86,7 +86,8 @@ endef HOST_GCC_COMMON_DEPENDENCIES = \ host-binutils \ host-gmp \ - host-mpfr + host-mpfr \ + $(if $(BR2_BINFMT_FLAT),host-elf2flt) HOST_GCC_COMMON_CONF_OPT = \ --target=$(GNU_TARGET_NAME) \