File: .bazelrc

package info (click to toggle)
golang-github-tink-crypto-tink-go-gcpkms 2.2.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 336 kB
  • sloc: sh: 1,153; makefile: 2
file content (8 lines) | stat: -rw-r--r-- 472 bytes parent folder | download
1
2
3
4
5
6
7
8
# Enables automatic per-platform configs.
common --enable_platform_specific_config
# Minumum C++ version. Override it building this project with
# `bazel build --cxxopt='-std=c++<XY>' --host_cxxopt='c++<XY>' ...`
# (Both -std and --host_cxxopt must be set to force the desired version.)
build:linux --cxxopt='-std=c++14' --host_cxxopt='-std=c++14'
build:macos --cxxopt='-std=c++14' --host_cxxopt='-std=c++14'
build:windows --cxxopt='/std:c++14' --host_cxxopt='/std:c++14'