-
Notifications
You must be signed in to change notification settings - Fork 1
/
.bazelrc
242 lines (214 loc) · 11.2 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
#startup --output_base=D:/x --windows_enable_symlinks
common --noenable_bzlmod
common --experimental_downloader_config=.bazel_downloader.cfg
common --enable_platform_specific_config
######################### attention #########################
# 1. pprof.out generated in bazel test sandbox
# 2. go install github.com/google/pprof@latest
# 3. tcmalloc not support windows
test:cpplint --test_tag_filters='cpplint'
test:cpplint --build_tests_only
test:unit_test --test_tag_filters='-cpplint'
test:unit_test_tcmalloc --define='profiling_type=tcmalloc'
test:unit_test_tcmalloc --test_env='CPUPROFILE=pprof.out'
test:unit_test_tcmalloc --test_env='PPROF_PATH=/root/src/go/bin/pprof'
test:unit_test_tcmalloc --copt='-g'
test:unit_test_jemalloc --define='profiling_type=jemalloc'
test:unit_test_jemalloc --test_env='CPUPROFILE=pprof.out'
test:unit_test_jemalloc --test_env='PPROF_PATH=/usr/local/bin/pprof'
test:unit_test_jemalloc --test_env='MALLOC_CONF=prof_leak:true,prof:true,prof_active:true,lg_prof_interval:20,lg_prof_sample:17,prof_prefix:jeprof.out,prof_final:true'
test:unit_test_jemalloc --copt='-g'
coverage --test_tag_filters=-cpplint
coverage --copt=-fprofile-instr-generate
coverage --copt=-fprofile-arcs
coverage --copt=--coverage
coverage --copt=-fcoverage-mapping
coverage --copt=-ftest-coverage
coverage --copt='-g'
coverage --linkopt=-coverage
coverage --linkopt=-fprofile-instr-generate
coverage --nocache_test_results
################# sanitize ###############
# -fsanitize=address,undefined,thread,memory
build:asan --strip=never
build:asan --copt='-fsanitize=address'
build:asan --copt='-O0'
build:asan --copt='-fno-omit-frame-pointer'
build:asan --copt='-g'
build:asan --linkopt='-fsanitize=address'
#build:asan --linkopt='-static-libasan'
build:asan --action_env=ASAN_OPTIONS=detect_leaks=1:color=always
build:asan --action_env=LSAN_OPTIONS=suppressions=test/core/test_util/lsan_suppressions.txt:report_objects=1
build:asan --action_env=ASAN_OPTIONS=detect_odr_violation=0 # https://github.com/google/sanitizers/issues/1017
build:msan --strip=never
build:msan --copt=-fsanitize=memory
build:msan --copt=-O0
build:asan --copt='-g'
build:msan --copt=-fsanitize-memory-track-origins
build:msan --copt=-fsanitize-memory-use-after-dtor
build:msan --copt=-fno-omit-frame-pointer
build:msan --linkopt=-fsanitize=memory
build:msan --action_env=MSAN_OPTIONS=poison_in_dtor=1
build:tsan --strip=never
build:tsan --copt=-fsanitize=thread
build:tsan --copt=-fno-omit-frame-pointer
build:tsan --linkopt=-fsanitize=thread
build:tsan --action_env=TSAN_OPTIONS=suppressions=test/core/test_util/tsan_suppressions.txt:halt_on_error=1:second_deadlock_stack=1
# a TSAN build that tries to create new threads whenever possible
build:thready_tsan --strip=never
build:thready_tsan --copt=-fsanitize=thread
build:thready_tsan --copt=-fno-omit-frame-pointer
build:thready_tsan --linkopt=-fsanitize=thread
build:thready_tsan --action_env=TSAN_OPTIONS=suppressions=test/core/test_util/tsan_suppressions.txt:halt_on_error=1:second_deadlock_stack=1
build:ubsan --strip=never
build:ubsan --copt=-fsanitize=undefined
build:ubsan --copt=-fsanitize-link-c++-runtime
build:ubsan --copt=-fno-omit-frame-pointer
build:ubsan --copt=-DNDEBUG
build:ubsan --copt=-fno-sanitize=function,vptr
build:ubsan --linkopt=-fsanitize=undefined
# avoid ubsan build error with int128 by linking against libc++
build:ubsan --linkopt=-fsanitize-link-c++-runtime
build:ubsan --linkopt=-lc++
build:ubsan --linkopt=-lc++abi
build:ubsan --linkopt=-lm
build:ubsan --action_env=UBSAN_OPTIONS=halt_on_error=1:print_stacktrace=1:suppressions=test/core/test_util/ubsan_suppressions.txt
# if you want to run ubsan locally, uncomment following three lines
# build:ubsan --linkopt=-lgcc_s
# build:ubsan --linkopt=-lubsan
# build:ubsan --linkopt=-rtlib=compiler-rt
#####################################################################
build --announce_rc
build --strip='never'
build --output_filter="^//"
build -c opt
build --define cross_compiling=false
build --features=-module_maps
build --host_features=-module_maps
#build --features=-layering_check
#build --host_features=-layering_check
#build --remote_cache=http://192.168.1.101/bazel_cache
build --keep_going
build:opt --compilation_mode=opt
build:opt --copt=-Wframe-larger-than=16384
build:dbg --compilation_mode=dbg
build:windows --cxxopt='/std:c++17'
build:windows --host_cxxopt='/std:c++17'
build:windows --compiler='msvc-cl'
build:windows --cpu='x64_windows'
build:windows --extra_toolchains='@openssl//:preinstalled_nmake_toolchain'
build:windows --extra_toolchains='@openssl//:preinstalled_pkgconfig_toolchain'
build:windows --workspace_status_command=bazel/workspace_status.bat
build:macos --copt='-mmacosx-version-min=10.15'
build:macos --copt='-g'
build:macos --copt='-O2'
build:macos --copt='-Wall'
build:macos --cxxopt='-std=c++17'
build:macos --cxxopt=-D_GLIBCXX_USE_CXX11_ABI=1
build:macos --host_copt='-mmacosx-version-min=10.15'
build:macos --host_copt='-g'
build:macos --host_copt='-O2'
build:macos --host_copt='-Wall'
build:macos --host_cxxopt='-std=c++17'
build:macos --dynamic_mode=off
build:macos --workspace_status_command=bazel/workspace_status.sh
build:linux --copt='-g'
build:linux --copt='-O2'
build:linux --copt='-Wall'
build:linux --cxxopt='-std=c++17'
build:linux --cxxopt=-D_GLIBCXX_USE_CXX11_ABI=1
build:linux --host_copt='-g'
build:linux --host_copt='-O2'
build:linux --host_copt='-Wall'
build:linux --host_cxxopt='-std=c++17'
build:linux --host_cxxopt=-D_GLIBCXX_USE_CXX11_ABI=1
build:linux --workspace_status_command=bazel/workspace_status.sh
build:android --noenable_platform_specific_config
build:ios --noenable_platform_specific_config
build:tcmalloc --define='profiling_type=tcmalloc'
build:jemalloc --define='profiling_type=jemalloc'
################# cross compiling ###############
build:gcc_local --platforms='//bazel:linux_x86_64_platform'
build:gcc_local --toolchain_resolution_debug='@bazel_tools//tools/jdk:runtime_toolchain_type'
build:gcc_local --extra_toolchains='@local_config_cc_toolchains//:cc-toolchain-k8'
build:gcc_local --extra_toolchains='@remotejdk21_linux_toolchain_config_repo//:toolchain'
build:gcc_local --cpu='x86_64'
build:gcc_local --compiler=gcc
build:gcc_local --copt='-g'
build:gcc_local --host_copt='-g'
build:clang_local --platforms='//bazel:linux_x86_64_platform'
build:clang_local --toolchain_resolution_debug='@bazel_tools//tools/cpp:toolchain_type'
build:clang_local --extra_toolchains='//toolchain:clang_toolchain_for_linux_x86_64'
build:clang_local --extra_toolchains='@remotejdk21_linux_toolchain_config_repo//:toolchain'
build:clang_local --cpu='x86_64'
build:clang_local --compiler=clang
build:clang_local --copt='-g'
build:clang_local --host_copt='-g'
build:gcc --platforms='//bazel:linux_x86_64_platform'
build:gcc --toolchain_resolution_debug='@bazel_tools//tools/jdk:runtime_toolchain_type'
build:gcc --extra_toolchains='@cc_toolchain_config_x86_64_linux_generic_glibc_gcc//:toolchain-x86_64_linux_generic_glibc_gcc'
build:gcc --extra_toolchains='@remotejdk21_linux_toolchain_config_repo//:toolchain'
build:gcc --cpu='x86_64'
build:gcc --compiler='gcc'
build:gcc --copt='-g'
build:gcc --host_copt='-g'
build:gcc_macosx_x86_64 --platforms='//bazel:osx_x86_64_platform'
build:gcc_macosx_x86_64 --toolchain_resolution_debug='@bazel_tools//tools/jdk:runtime_toolchain_type'
build:gcc_macosx_x86_64 --extra_toolchains='@cc_toolchain_config_x86_64_osx_generic_macosx_gcc//:toolchain-x86_64_osx_generic_macosx_gcc'
build:gcc_macosx_x86_64 --extra_toolchains='@remotejdk21_linux_toolchain_config_repo//:toolchain'
build:gcc_macosx_x86_64 --cpu='x86_64'
build:gcc_macosx_x86_64 --compiler='gcc'
build:gcc_macosx_x86_64 --copt='-mmacosx-version-min=10.15'
build:gcc_macosx_x86_64 --define cross_compiling=true
build:gcc_macosx_x86_64 --build_tag_filters='-ignore'
build:gcc_windows_x86_64 --platforms='//bazel:windows_x86_64_platform'
build:gcc_windows_x86_64 --toolchain_resolution_debug='@bazel_tools//tools/cpp:toolchain_type'
build:gcc_windows_x86_64 --extra_toolchains='@cc_toolchain_config_x86_64_windows_generic_mingw-w64_gcc//:toolchain-x86_64_windows_generic_mingw-w64_gcc'
build:gcc_windows_x86_64 --extra_toolchains='@remotejdk21_linux_toolchain_config_repo//:toolchain'
build:gcc_windows_x86_64 --extra_toolchains='@openssl//:preinstalled_make_toolchain'
build:gcc_windows_x86_64 --extra_toolchains='@openssl//:preinstalled_pkgconfig_toolchain'
build:gcc_windows_x86_64 --cpu='x86_64'
build:gcc_windows_x86_64 --compiler='gcc'
build:gcc_windows_x86_64 --copt='-mbmi'
build:gcc_windows_x86_64 --copt='-D_WIN32_WINNT=0x0601'
build:gcc_windows_x86_64 --define cross_compiling=true
build:gcc_windows_x86_64 --build_tag_filters='-ignore'
build:openwrt_aarch64 --platforms='//bazel:linux_aarch64_platform'
build:openwrt_aarch64 --toolchain_resolution_debug='@bazel_tools//tools/jdk:runtime_toolchain_type'
build:openwrt_aarch64 --extra_toolchains='@cc_toolchain_config_aarch64_linux_openwrt_musl_gcc//:toolchain-aarch64_linux_openwrt_musl_gcc'
build:openwrt_aarch64 --extra_toolchains='@remotejdk21_linux_aarch64_toolchain_config_repo//:toolchain'
build:openwrt_aarch64 --cpu='aarch64'
build:openwrt_aarch64 --compiler='gcc'
build:openwrt_aarch64 --java_runtime_version="remotejdk_21"
build:openwrt_aarch64 --action_env=STAGING_DIR=/root/src/software/openwrt/openwrt-aarch64_toolchain
build:openwrt_aarch64 --copt='-g'
build:openwrt_aarch64 --host_copt='-g'
build:openwrt_aarch64 --define cross_compiling=true
build:openwrt_aarch64 --build_tag_filters='-ignore'
build:clang --platforms='//bazel:linux_x86_64_platform'
build:clang --toolchain_resolution_debug='@bazel_tools//tools/cpp:toolchain_type'
build:clang --extra_toolchains='@cc_toolchain_config_x86_64_linux_generic_glibc_clang//:toolchain-x86_64_linux_generic_glibc_clang'
build:clang --extra_toolchains='@remotejdk21_linux_toolchain_config_repo//:toolchain'
build:clang --cpu='x86_64'
build:clang --compiler='clang'
build:clang --copt='-g'
build:clang --host_copt='-g'
build:clang_macosx_x86_64 --platforms='//bazel:osx_x86_64_platform'
build:clang_macosx_x86_64 --toolchain_resolution_debug='@bazel_tools//tools/jdk:runtime_toolchain_type'
build:clang_macosx_x86_64 --extra_toolchains='@cc_toolchain_config_x86_64_osx_generic_macosx_clang//:toolchain-x86_64_osx_generic_macosx_clang'
build:clang_macosx_x86_64 --extra_toolchains='@remotejdk21_linux_toolchain_config_repo//:toolchain'
build:clang_macosx_x86_64 --cpu='x86_64'
build:clang_macosx_x86_64 --compiler='clang'
build:clang_macosx_x86_64 --copt='-mmacosx-version-min=10.15'
build:clang_macosx_x86_64 --define cross_compiling=true
build:clang_macosx_x86_64 --build_tag_filters='-ignore'
build:clang_linux_aarch64 --platforms='//bazel:linux_aarch64_platform'
build:clang_linux_aarch64 --toolchain_resolution_debug='@bazel_tools//tools/cpp:toolchain_type'
build:clang_linux_aarch64 --extra_toolchains='@cc_toolchain_config_aarch64_linux_generic_glibc_clang//:toolchain-aarch64_linux_generic_glibc_clang'
build:clang_linux_aarch64 --extra_toolchains='@remotejdk21_linux_aarch64_toolchain_config_repo//:toolchain'
build:clang_linux_aarch64 --cpu='aarch64'
build:clang_linux_aarch64 --compiler=clang
build:clang_linux_aarch64 --copt='-g'
build:clang_linux_aarch64 --host_copt='-g'
build:clang_linux_aarch64 --define cross_compiling=true
build:clang_linux_aarch64 --build_tag_filters='-ignore'