summaryrefslogtreecommitdiffstats
path: root/package/google-breakpad
diff options
context:
space:
mode:
authorRomain Naour <romain.naour@gmail.com>2016-12-19 21:25:25 +0100
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>2016-12-19 22:21:31 +0100
commit4f08ad87df646ad1df93d749ec32617f1ecf60ea (patch)
treefb0f563900adff3d2ff1352e9a6d793872badc89 /package/google-breakpad
parent0cf7d259a725bf3164716c0d78f7f89c8330e7a1 (diff)
downloadbuildroot-4f08ad87df646ad1df93d749ec32617f1ecf60ea.tar.gz
buildroot-4f08ad87df646ad1df93d749ec32617f1ecf60ea.zip
package/google-breakpad: add C++11 dependency on the host variant
When google-breakpad has been updated to the latest version, the C++11 dependency has been added for the target variant only. The C++11 dependency is also required for the host variant. Fixes: http://autobuild.buildroot.org/results/dce/dcecb17116c0cf400c98f0052c9bf71f15d0d398 Signed-off-by: Romain Naour <romain.naour@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/google-breakpad')
-rw-r--r--package/google-breakpad/Config.in3
1 files changed, 2 insertions, 1 deletions
diff --git a/package/google-breakpad/Config.in b/package/google-breakpad/Config.in
index 31ca422024..c6171afefd 100644
--- a/package/google-breakpad/Config.in
+++ b/package/google-breakpad/Config.in
@@ -6,6 +6,7 @@ config BR2_PACKAGE_GOOGLE_BREAKPAD_ARCH_SUPPORTS
config BR2_PACKAGE_GOOGLE_BREAKPAD
bool "google-breakpad"
depends on BR2_INSTALL_LIBSTDCPP
+ depends on BR2_HOST_GCC_AT_LEAST_4_7 # C++11
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_7 # C++11
depends on BR2_USE_WCHAR
depends on BR2_TOOLCHAIN_HAS_THREADS
@@ -38,4 +39,4 @@ comment "google-breakpad requires a glibc or uClibc toolchain w/ wchar, thread,
depends on !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR || \
!BR2_TOOLCHAIN_HAS_THREADS || \
!(BR2_TOOLCHAIN_USES_GLIBC || BR2_TOOLCHAIN_USES_UCLIBC) || \
- !BR2_TOOLCHAIN_GCC_AT_LEAST_4_7
+ !BR2_TOOLCHAIN_GCC_AT_LEAST_4_7 || !BR2_HOST_GCC_AT_LEAST_4_7
OpenPOWER on IntegriCloud