-
Notifications
You must be signed in to change notification settings - Fork 391
/
.bazelrc
50 lines (40 loc) · 1.38 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
build --enable_platform_specific_config
build:linux --cxxopt="-std=c++17"
build:macos --cxxopt="-std=c++17"
build:freebsd --cxxopt="-std=c++17"
build:macos --cxxopt="-std=c++17"
build:qnx --cxxopt="-std=c++17"
build:windows --cxxopt="/std:c++17"
# For using clang
build:clang --action_env=BAZEL_COMPILER=clang
build:clang --action_env=CC=clang --action_env=CXX=clang++
build:clang --linkopt=-fuse-ld=lld
# asan gcc
build:asan --cxxopt="-fsanitize=address"
build:asan --cxxopt="-fno-omit-frame-pointer"
build:asan --cxxopt="-g" --cxxopt="-O2" --strip=never
build:asan --linkopt="-fsanitize=address"
# asan clang
build:clang_asan --config=clang --config=asan
# usan gcc
build:usan --cxxopt="-fsanitize=undefined"
build:usan --cxxopt="-fno-omit-frame-pointer"
build:usan --cxxopt="-g" --cxxopt="-O2" --strip=never
build:usan --linkopt="-fsanitize=undefined"
# usan clang
build:clang_usan --config=clang --config=usan
# tsan gcc
build:tsan --cxxopt="-fsanitize=thread"
build:tsan --cxxopt="-fno-omit-frame-pointer"
build:tsan --cxxopt="-g" --cxxopt="-O2" --strip=never
build:tsan --linkopt="-fsanitize=thread"
# tsan clang
build:clang_tsan --config=clang --config=tsan
# do not use bzlmod for now
build --noenable_bzlmod
#
# feature flags
#
# value [auto, on, off]
# 'auto' is platform dependent ('on' on Linux and QNX, 'off' on other OS) and the default value if the flag is not set
#build --//:feature_acl=off