1# Fix for grpc build error on macOS. 2# See: https://github.com/bazelbuild/bazel/issues/4341 3build --copt=-DGRPC_BAZEL_BUILD 4# Minumum C++ version. Override it building this project with 5# `bazel build --cxxopt='-std=c++<XY>' --host_cxxopt='c++<XY>' ...` 6# (Both -std and --host_cxxopt must be set to force the desired version.) 7build --cxxopt='-std=c++14' --host_cxxopt='-std=c++14' 8