From 6208f4f98f1f7d90671cae9370235a1b97046bd2 Mon Sep 17 00:00:00 2001 From: DavidKorczynski Date: Tue, 19 Jul 2022 15:33:10 +0100 Subject: [PATCH] opencensus-cpp: fix build (#8028) --- projects/opencensus-cpp/build.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/projects/opencensus-cpp/build.sh b/projects/opencensus-cpp/build.sh index 04b790367..ea1181d76 100755 --- a/projects/opencensus-cpp/build.sh +++ b/projects/opencensus-cpp/build.sh @@ -15,6 +15,8 @@ # ################################################################################ +export CXXFLAGS="${CXXFLAGS} -std=c++14" + git grep cc_fuzz_target.bzl | grep BUILD | cut -d: -f1 | uniq | while read i; do sed -i -e 's=//bazel:cc_fuzz_target.bzl=@rules_fuzzing//fuzzing:cc_defs.bzl=' $i; done git grep fuzz_target\( | grep BUILD | cut -d: -f1 | uniq | while read i; do sed -i -e 's/fuzz_target/fuzz_test/' $i; done