| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 | # bazelrc filebuild --client_env=CC=clangbuild --copt=-DGRPC_BAZEL_BUILDbuild --action_env=GRPC_BAZEL_RUNTIME=1build --define=use_fast_cpp_protos=truebuild:opt --compilation_mode=optbuild:opt --copt=-Wframe-larger-than=16384build:dbg --compilation_mode=dbgbuild:windows_opt --compilation_mode=optbuild:windows_dbg --compilation_mode=dbgbuild:asan --strip=neverbuild:asan --copt=-fsanitize=addressbuild:asan --copt=-O0build:asan --copt=-fno-omit-frame-pointerbuild:asan --copt=-DGPR_NO_DIRECT_SYSCALLSbuild:asan --copt=-DGRPC_ASANbuild:asan --copt=-DADDRESS_SANITIZER  # used by abslbuild:asan --linkopt=-fsanitize=addressbuild:asan --action_env=ASAN_OPTIONS=detect_leaks=1:color=alwaysbuild:asan --action_env=LSAN_OPTIONS=suppressions=test/core/util/lsan_suppressions.txt:report_objects=1# We have a separate ASAN config for Mac OS to workaround a couple of bugs:# 1. https://github.com/bazelbuild/bazel/issues/6932#    _FORTIFY_SOURCE=1 is enabled by default on Mac OS, which breaks ASAN.#    We workaround it by setting _FORTIFY_SOURCE=0 and ignoring macro redefined#    warnings.# 2. https://github.com/google/sanitizers/issues/1026#    LSAN is not supported by the version of Clang that ships with Mac OS, so#    we disable it.build:asan_macos --strip=neverbuild:asan_macos --copt=-fsanitize=addressbuild:asan_macos --copt -Wno-macro-redefinedbuild:asan_macos --copt -D_FORTIFY_SOURCE=0build:asan_macos --copt=-fsanitize=addressbuild:asan_macos --copt=-O0build:asan_macos --copt=-fno-omit-frame-pointerbuild:asan_macos --copt=-DGPR_NO_DIRECT_SYSCALLSbuild:asan_macos --copt=-DADDRESS_SANITIZER  # used by abslbuild:asan_macos --linkopt=-fsanitize=addressbuild:asan_macos --action_env=ASAN_OPTIONS=detect_leaks=0build:msan --strip=neverbuild:msan --copt=-fsanitize=memorybuild:msan --copt=-O0build:msan --copt=-fsanitize-memory-track-originsbuild:msan --copt=-fsanitize-memory-use-after-dtorbuild:msan --copt=-fno-omit-frame-pointerbuild:msan --copt=-DGPR_NO_DIRECT_SYSCALLSbuild:msan --copt=-DMEMORY_SANITIZER  # used by abslbuild:msan --linkopt=-fsanitize=memorybuild:msan --action_env=MSAN_OPTIONS=poison_in_dtor=1build:tsan --strip=neverbuild:tsan --copt=-fsanitize=threadbuild:tsan --copt=-fno-omit-frame-pointerbuild:tsan --copt=-DGPR_NO_DIRECT_SYSCALLSbuild:tsan --copt=-DGRPC_TSAN# TODO(jtattermusch): ideally we would set --copt=-DTHREAD_SANITIZER (used by absl)# but it seems to do more harm than good and triggers #17175build:tsan --linkopt=-fsanitize=threadbuild:tsan --action_env=TSAN_OPTIONS=suppressions=test/core/util/tsan_suppressions.txt:halt_on_error=1:second_deadlock_stack=1build:ubsan --strip=neverbuild:ubsan --copt=-fsanitize=undefinedbuild:ubsan --copt=-fno-omit-frame-pointerbuild:ubsan --copt=-DGRPC_UBSANbuild:ubsan --copt=-DNDEBUGbuild:ubsan --copt=-DUNDEFINED_BEHAVIOR_SANITIZER  # used by abslbuild:ubsan --copt=-fno-sanitize=function,vptrbuild:ubsan --linkopt=-fsanitize=undefinedbuild:ubsan --action_env=UBSAN_OPTIONS=halt_on_error=1:print_stacktrace=1:suppressions=test/core/util/ubsan_suppressions.txt# For some reasons, these two stopped being propagated, so, redeclaring them here.# That's a hack that needs to be removed once we understand what's going on.build:ubsan --copt=-DGRPC_PORT_ISOLATED_RUNTIME=1build:basicprof --strip=neverbuild:basicprof --copt=-DNDEBUGbuild:basicprof --copt=-O2build:basicprof --copt=-DGRPC_BASIC_PROFILERbuild:basicprof --copt=-DGRPC_TIMERS_RDTSCbuild:python_single_threaded_unary_stream --test_env="GRPC_SINGLE_THREADED_UNARY_STREAM=true"build:python_poller_engine --test_env="GRPC_ASYNCIO_ENGINE=poller"# "counters" config is based on a legacy config provided by the Makefile (see definition in build_handwritten.yaml).# It is only used in microbenchmarks.# TODO(jtattermusch): get rid of the "counters" config when possiblebuild:counters --compilation_mode=optbuild:counters --copt=-Wframe-larger-than=16384build:counters --copt=-DGPR_LOW_LEVEL_COUNTERS# "mutrace" config is based on a legacy config provided by the Makefile (see definition in build_handwritten.yaml).# It is only used in microbenchmarks (see tools/run_tests/run_microbenchmark.py)# TODO(jtattermusch): get rid of the "mutrace" config when possiblebuild:mutrace --copt=-O3build:mutrace --copt=-fno-omit-frame-pointerbuild:mutrace --copt=-DNDEBUGbuild:mutrace --linkopt=-rdynamic# Compile database generation configbuild:compdb --build_tag_filters=-nocompdb
 |