diff options
| author | Fabrice Fontaine <fontaine.fabrice@gmail.com> | 2018-06-23 17:32:32 +0200 |
|---|---|---|
| committer | Peter Korsgaard <peter@korsgaard.com> | 2018-06-24 08:36:04 +0200 |
| commit | 5dd74dbd1abbe87e0e792e2922a06909af279b3b (patch) | |
| tree | 39f5bb3963e9e4197534238da31f4de609c1c498 /package/protobuf | |
| parent | c4e4110d22332fd35d629259ccdfe9b934c9c633 (diff) | |
| download | buildroot-5dd74dbd1abbe87e0e792e2922a06909af279b3b.tar.gz buildroot-5dd74dbd1abbe87e0e792e2922a06909af279b3b.zip | |
protobuf: add dependency on gcc >= 4.8
Since version 3.6.0, protobuf requires C++11
Fixes:
- http://autobuild.buildroot.net/results/bb299008423edf4c65ade6c159e33c4216428bf1
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/protobuf')
| -rw-r--r-- | package/protobuf/Config.in | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/package/protobuf/Config.in b/package/protobuf/Config.in index c91e401508..2829b2a5a7 100644 --- a/package/protobuf/Config.in +++ b/package/protobuf/Config.in @@ -30,8 +30,8 @@ config BR2_PACKAGE_PROTOBUF depends on BR2_INSTALL_LIBSTDCPP depends on BR2_TOOLCHAIN_HAS_THREADS depends on BR2_PACKAGE_PROTOBUF_ARCH_SUPPORTS - depends on BR2_HOST_GCC_AT_LEAST_4_5 - depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_5 + depends on BR2_HOST_GCC_AT_LEAST_4_8 # C++11 + depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 # C++11 depends on !BR2_STATIC_LIBS help Protocol buffers are Google's language-neutral, @@ -40,8 +40,8 @@ config BR2_PACKAGE_PROTOBUF https://developers.google.com/protocol-buffers -comment "protobuf needs a toolchain w/ C++, threads, dynamic library, host and target gcc >= 4.5" +comment "protobuf needs a toolchain w/ C++, threads, dynamic library, host and target gcc >= 4.8" depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS \ - || BR2_STATIC_LIBS || !BR2_HOST_GCC_AT_LEAST_4_5 \ - || !BR2_TOOLCHAIN_GCC_AT_LEAST_4_5 + || BR2_STATIC_LIBS || !BR2_HOST_GCC_AT_LEAST_4_8 \ + || !BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 depends on BR2_PACKAGE_PROTOBUF_ARCH_SUPPORTS |

