diff options
author | Gustavo Zacarias <gustavo@zacarias.com.ar> | 2013-09-11 09:12:06 -0300 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2013-09-13 00:08:04 +0200 |
commit | 4fc45ccca5de28fec0b1f777f3b6c920b02c2dcf (patch) | |
tree | ff840b517f41331e508baac7ab3d3e0743cda12b /package/gcc | |
parent | 457620232ee181d122c198900f1f2247f5110a55 (diff) | |
download | buildroot-4fc45ccca5de28fec0b1f777f3b6c920b02c2dcf.tar.gz buildroot-4fc45ccca5de28fec0b1f777f3b6c920b02c2dcf.zip |
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 <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/gcc')
-rw-r--r-- | package/gcc/gcc.mk | 3 |
1 files changed, 2 insertions, 1 deletions
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) \ |