diff options
author | Gustavo Zacarias <gustavo@zacarias.com.ar> | 2014-01-15 10:03:44 -0300 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2014-01-15 14:23:03 +0100 |
commit | ab5c9c36ca5e8f62ae2fae2e3510d5923d888e52 (patch) | |
tree | 01e174347c2c89a0306552cc339dc3cb6e6f70fc | |
parent | c75e5117b473bc9d0b8789295527e0156b769d84 (diff) | |
download | buildroot-ab5c9c36ca5e8f62ae2fae2e3510d5923d888e52.tar.gz buildroot-ab5c9c36ca5e8f62ae2fae2e3510d5923d888e52.zip |
mpd: add more gcc exclusions
The codesourcery powerpc toolchains also include a gcc that's too old
for mpd to build properly. Fixes:
http://autobuild.buildroot.net/results/be0/be0aff9814ded4ba74999283530b805af01992da/
Also add toolchain comment exclusion for avr32 & sparc since it won't be
available anyway.
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
-rw-r--r-- | package/mpd/Config.in | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/package/mpd/Config.in b/package/mpd/Config.in index 5a03a62a35..063c65dba7 100644 --- a/package/mpd/Config.in +++ b/package/mpd/Config.in @@ -4,7 +4,9 @@ menuconfig BR2_PACKAGE_MPD depends on BR2_USE_WCHAR # libglib2 depends on BR2_TOOLCHAIN_HAS_THREADS # libglib2 depends on BR2_USE_MMU # libglib2 - depends on !(BR2_avr32 || BR2_sparc) # gcc too old + # avr32, sparc & CS powerpc gcc are too old + depends on !(BR2_avr32 || BR2_sparc) + depends on !(BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_POWERPC201103 || BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_POWERPC201009) depends on !BR2_UCLIBC_VERSION_0_9_32 # lacks signalfd select BR2_PACKAGE_LIBGLIB2 select BR2_PACKAGE_LIBICONV if !BR2_ENABLE_LOCALE @@ -200,5 +202,6 @@ endif comment "mpd needs a toolchain w/ C++, threads, wchar" depends on BR2_USE_MMU + depends on !(BR2_avr32 || BR2_sparc) depends on !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR || \ !BR2_TOOLCHAIN_HAS_THREADS |