From 7b81633ff828a2fdb3c96f2288407a1d4401b1ef Mon Sep 17 00:00:00 2001 From: Michael Pratt Date: Fri, 6 Dec 2019 15:25:16 -0800 Subject: Build with C++17 This will require a reasonably modern toolchain. I've put minimum compiler versions in the README based on versions in https://en.cppreference.com/w/cpp/compiler_support that have mostly complete language and library support. The minimum Bazel version bump is unrelated, but 0.28 is definitely not supported anymore. Please report issues on gvisor.dev/issue/1349. Fixes #1349 PiperOrigin-RevId: 284274250 --- .bazelrc | 3 +++ 1 file changed, 3 insertions(+) (limited to '.bazelrc') diff --git a/.bazelrc b/.bazelrc index 379fc8328..7f87e94b1 100644 --- a/.bazelrc +++ b/.bazelrc @@ -12,6 +12,9 @@ # See the License for the specific language governing permissions and # limitations under the License. +# Build with C++17. +build --cxxopt=-std=c++17 + # Display the current git revision in the info block. build --stamp --workspace_status_command tools/workspace_status.sh -- cgit v1.2.3