diff options
Diffstat (limited to 'build.yaml')
-rw-r--r-- | build.yaml | 104 |
1 files changed, 104 insertions, 0 deletions
diff --git a/build.yaml b/build.yaml index 61a28cb256..6af1f7165a 100644 --- a/build.yaml +++ b/build.yaml @@ -2481,6 +2481,110 @@ vspackages: props: false redist: false version: 1.7.0.1 +configs: + asan: + CC: clang + CFLAGS: -O0 -fsanitize=address -fno-omit-frame-pointer -Wno-unused-command-line-argument + CXX: clang++ + CXXFLAGS: -O0 -fsanitize=address -fno-omit-frame-pointer -Wno-unused-command-line-argument + LD: clang + LDFLAGS: -fsanitize=address + LDXX: clang++ + compile_the_world: true + test_environ: + ASAN_OPTIONS: suppressions=tools/asan_suppressions.txt:detect_leaks=1:color=always + LSAN_OPTIONS: suppressions=tools/asan_suppressions.txt:report_objects=1 + asan-noleaks: + CC: clang + CFLAGS: -O0 -fsanitize=address -fno-omit-frame-pointer -Wno-unused-command-line-argument + CXX: clang++ + CXXFLAGS: -O0 -fsanitize=address -fno-omit-frame-pointer -Wno-unused-command-line-argument + LD: clang + LDFLAGS: -fsanitize=address + LDXX: clang++ + custom_libraries: true + test_environ: + ASAN_OPTIONS: detect_leaks=0:color=always + basicprof: + CPPFLAGS: -O2 -DGRPC_BASIC_PROFILER -DGRPC_TIMERS_RDTSC + DEFINES: NDEBUG + dbg: + CPPFLAGS: -O0 + DEFINES: _DEBUG DEBUG + LDFLAGS: -rdynamic + gcov: + CC: gcc + CFLAGS: -O0 -fprofile-arcs -ftest-coverage -Wno-return-type + CXX: g++ + CXXFLAGS: -O0 -fprofile-arcs -ftest-coverage -Wno-return-type + DEFINES: _DEBUG DEBUG GPR_GCOV + LD: gcc + LDFLAGS: -fprofile-arcs -ftest-coverage -rdynamic + LDXX: g++ + helgrind: + CPPFLAGS: -O0 + DEFINES: _DEBUG DEBUG + LDFLAGS: -rdynamic + timeout_multiplier: 20 + valgrind: --tool=helgrind + memcheck: + CPPFLAGS: -O0 + DEFINES: _DEBUG DEBUG + LDFLAGS: -rdynamic + timeout_multiplier: 10 + valgrind: --tool=memcheck --leak-check=full + msan: + CC: clang + CFLAGS: -O0 -fsanitize=memory -fsanitize-memory-track-origins -fno-omit-frame-pointer + -DGTEST_HAS_TR1_TUPLE=0 -DGTEST_USE_OWN_TR1_TUPLE=1 -Wno-unused-command-line-argument + -fPIE -pie + CXX: clang++ + CXXFLAGS: -O0 -fsanitize=memory -fsanitize-memory-track-origins -fno-omit-frame-pointer + -DGTEST_HAS_TR1_TUPLE=0 -DGTEST_USE_OWN_TR1_TUPLE=1 -Wno-unused-command-line-argument + -fPIE -pie + DEFINES: NDEBUG + LD: clang + LDFLAGS: -fsanitize=memory -DGTEST_HAS_TR1_TUPLE=0 -DGTEST_USE_OWN_TR1_TUPLE=1 + -fPIE -pie $(if $(JENKINS_BUILD),-Wl$(comma)-Ttext-segment=0x7e0000000000,) + LDXX: clang++ + compile_the_world: true + timeout_multiplier: 1.5 + mutrace: + CPPFLAGS: -O0 + DEFINES: _DEBUG DEBUG + LDFLAGS: -rdynamic + opt: + CPPFLAGS: -O2 + DEFINES: NDEBUG + LDFLAGS: -rdynamic + stapprof: + CPPFLAGS: -O2 -DGRPC_STAP_PROFILER + DEFINES: NDEBUG + tsan: + CC: clang + CFLAGS: -O0 -fsanitize=thread -fno-omit-frame-pointer -Wno-unused-command-line-argument + -fPIE -pie + CXX: clang++ + CXXFLAGS: -O0 -fsanitize=thread -fno-omit-frame-pointer -Wno-unused-command-line-argument + -fPIE -pie + LD: clang + LDFLAGS: -fsanitize=thread -fPIE -pie $(if $(JENKINS_BUILD),-Wl$(comma)-Ttext-segment=0x7e0000000000,) + LDXX: clang++ + compile_the_world: true + test_environ: + TSAN_OPTIONS: suppressions=tools/tsan_suppressions.txt:halt_on_error=1:second_deadlock_stack=1 + timeout_multiplier: 2 + ubsan: + CC: clang + CFLAGS: -O1 -fsanitize=undefined -fno-omit-frame-pointer -Wno-unused-command-line-argument + CXX: clang++ + CXXFLAGS: -O1 -fsanitize=undefined -fno-omit-frame-pointer -Wno-unused-command-line-argument + DEFINES: NDEBUG + LD: clang + LDFLAGS: -fsanitize=undefined + LDXX: clang++ + compile_the_world: true + timeout_multiplier: 1.5 node_modules: - deps: - grpc |