-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy path.local.example.bazelrc
36 lines (30 loc) · 1.19 KB
/
.local.example.bazelrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# Bazel developer-specific config.
#
# Copy this file to .local.bazelrc and adjust to meet your needs.
# You may choose one of the possible sandboxing technologies.
#build --config=sandboxfs
#build --config=docker-sandbox
# Optionally enable *one* of the following configs. If none is enabled, we build
# in fastbuild mode (no optimisation, minimal debugging information).
#build --config=debug
#build --config=release
# You may use the remote cache. This is mostly only useful when building with
# docker-sandbox, as that way you'll be sharing build artifacts with the CI
# builds, speeding up your builds significantly.
#build --config=remote
# Pick *one* of these for the target platform. "nix" is the default Linux target.
#
# remote-exec will also cache, so no need for remote in that case.
build --config=nix
#build --config=remote-exec
#build --config=local
# You may also pick a cross-compile target, which should be combined with one
# of the above (needed to have a host toolchain available).
#build --config=linux-arm64-musl
#build --config=linux-x86_64-musl
#build --config=windows-x86_64
# Run with LLVM sanitizers.
#build --config=asan
#build --config=msan
#build --config=tsan
#build --config=ubsan