-
Notifications
You must be signed in to change notification settings - Fork 10
/
.bazelrc
34 lines (25 loc) · 1.01 KB
/
.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
#############################
## Terminal output options ##
#############################
# If a command fails, print out the full command line
build --verbose_failures
# Display the subcommands used to generate each target
# Uncomment to see the effect, if you have it allways enabled it will increase quite a log the logs
# build --subcommands=pretty_print
#####################
## Caching options ##
#####################
# Enable disk cache
build --disk_cache=~/.bazel/disk_cache/
#################################
## Toolchain debugging options ##
#################################
# Verbose output to know what toolchains are selected
build --toolchain_resolution_debug
###################################
## Config options for toolchains ##
###################################
# Do not use automatically generated toolchains
build --action_env=BAZEL_DO_NOT_DETECT_CPP_TOOLCHAIN=1
# Do not use the deprecated toolchain resolution system with --cpu and --crosstool_top
build --incompatible_enable_cc_toolchain_resolution