• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Minumum C++ version. Override it building this project with
2# `bazel build --cxxopt='-std=c++<XY>' --host_cxxopt='c++<XY>' ...`
3# (Both -std and --host_cxxopt must be set to force the desired version.)
4build --cxxopt='-std=c++14' --host_cxxopt='-std=c++14'
5build --java_language_version=8
6build --java_runtime_version=local_jdk
7
8# Silence all C/C++ warnings in external code.
9#
10# Note that this will not silence warnings from external headers included
11# in project code.
12build --per_file_copt=external/.*@-w
13build --host_per_file_copt=external/.*@-w
14