From: Joel Carlson <joelsoncarl@gmail.com>
To: buildroot@busybox.net
Subject: [Buildroot] [PATCH 2/2] package/c-capnproto: require GCC 5 for C++14
Date: Mon, 9 Sep 2019 12:52:15 -0600 [thread overview]
Message-ID: <20190909185215.26744-2-JoelsonCarl@gmail.com> (raw)
In-Reply-To: <20190909185215.26744-1-JoelsonCarl@gmail.com>
Adds a dependency on GCC 5 to have C++14. Since c-capnproto is useless
without having capnproto, must keep dependencies matched so you aren't
able to select c-capnproto when you can't select capnproto.
Signed-off-by: Joel Carlson <JoelsonCarl@gmail.com>
---
package/c-capnproto/Config.in | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/package/c-capnproto/Config.in b/package/c-capnproto/Config.in
index acad5a69c8..293e4483cd 100644
--- a/package/c-capnproto/Config.in
+++ b/package/c-capnproto/Config.in
@@ -1,8 +1,8 @@
config BR2_PACKAGE_C_CAPNPROTO
bool "c-capnproto"
depends on BR2_USE_MMU # capnproto
- depends on BR2_HOST_GCC_AT_LEAST_4_8 # capnproto
- depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 # capnproto
+ depends on BR2_HOST_GCC_AT_LEAST_5 # capnproto
+ depends on BR2_TOOLCHAIN_GCC_AT_LEAST_5 # capnproto
depends on BR2_INSTALL_LIBSTDCPP # capnproto
depends on BR2_TOOLCHAIN_HAS_THREADS # capnproto
depends on BR2_TOOLCHAIN_HAS_ATOMIC # capnproto
@@ -12,10 +12,10 @@ config BR2_PACKAGE_C_CAPNPROTO
plugin for C. Requires regular Cap'n Proto and only
provides serialization (no RPC).
-comment "c-capnproto needs host and target gcc >= 4.8 w/ C++, threads, atomic"
+comment "c-capnproto needs host and target gcc >= 5 w/ C++14, threads, atomic"
depends on BR2_USE_MMU
- depends on!BR2_HOST_GCC_AT_LEAST_4_8 || \
- !BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 || \
+ depends on!BR2_HOST_GCC_AT_LEAST_5 || \
+ !BR2_TOOLCHAIN_GCC_AT_LEAST_5 || \
!BR2_INSTALL_LIBSTDCPP || \
!BR2_TOOLCHAIN_HAS_THREADS || \
!BR2_TOOLCHAIN_HAS_ATOMIC
--
2.17.1
next prev parent reply other threads:[~2019-09-09 18:52 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-09-09 18:52 [Buildroot] [PATCH 1/2] package/capnproto: require GCC 5 for C++14 Joel Carlson
2019-09-09 18:52 ` Joel Carlson [this message]
2019-09-10 10:02 ` Thomas Petazzoni
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20190909185215.26744-2-JoelsonCarl@gmail.com \
--to=joelsoncarl@gmail.com \
--cc=buildroot@busybox.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.