diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2014-04-17 23:50:30 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2014-04-17 23:50:30 +0200 |
commit | e7a31657938f83f8a5f9261960e2809ad13e51d7 (patch) | |
tree | fd68c589ef1bcf6b796ae450c7a9404b72867dc6 | |
parent | 656cdc367e6f2bfba4316d605a5de27c82880473 (diff) |
zmqpp: exclude old Sourcery PowerPC toolchains that don't have C++0x
zmqpp needs some fairly advanced C++0x features, which apparently
aren't all available in gcc 4.5 used in PowerPC Sourcery 2011.03. So
this commit excludes both this toolchain and the older 2010.09 one.
Fixes:
http://autobuild.buildroot.org/results/a37/a374e85c714aff26bceaa0df4199bc44a1278f37/
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | package/zmqpp/Config.in | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/package/zmqpp/Config.in b/package/zmqpp/Config.in index 68dbf4e75..2ccaf7e2d 100644 --- a/package/zmqpp/Config.in +++ b/package/zmqpp/Config.in @@ -1,6 +1,8 @@ config BR2_PACKAGE_ZMQPP bool "zmqpp" depends on !BR2_avr32 # compiler needs c++0x support + depends on !BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_POWERPC201103 # c++0x support + depends on !BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_POWERPC201009 # c++0x support depends on BR2_INSTALL_LIBSTDCPP depends on BR2_INET_IPV6 # zeromq depends on BR2_LARGEFILE # util-linux |