Joshua Haberman | 0497f8d | 2020-11-02 19:00:23 -0800 | [diff] [blame] | 1 | # Use our custom-configured c++ toolchain. |
| 2 | |
| 3 | build:m32 --copt=-m32 --linkopt=-m32 |
| 4 | build:asan --copt=-fsanitize=address --linkopt=-fsanitize=address |
| 5 | build:valgrind --run_under='valgrind --leak-check=full --error-exitcode=1' |
| 6 | |
| 7 | build:ubsan --copt=-fsanitize=undefined --linkopt=-fsanitize=undefined --action_env=UBSAN_OPTIONS=halt_on_error=1:print_stacktrace=1 |
| 8 | # Workaround for the fact that Bazel links with $CC, not $CXX |
| 9 | # https://github.com/bazelbuild/bazel/issues/11122#issuecomment-613746748 |
| 10 | build:ubsan --copt=-fno-sanitize=function --copt=-fno-sanitize=vptr |
| 11 | |
Joshua Haberman | 5b1f0d8 | 2020-11-02 21:22:51 -0800 | [diff] [blame] | 12 | build:Werror --copt=-Werror |
| 13 | build:Werror --per_file_copt=json/parser@-Wno-error |
| 14 | build:Werror --per_file_copt=com_google_protobuf@-Wno-error |
| 15 | |
| 16 | # GCC's -fanalyzer, a deeper static analysis than normal warnings. |
| 17 | build:analyzer --copt=-fanalyzer --copt=-Werror |
| 18 | build:analyzer --per_file_copt=json/parser@-fno-analyzer |
| 19 | build:analyzer --per_file_copt=com_google_protobuf@-fno-analyzer |
| 20 | build:analyzer --per_file_copt=com_github_google_benchmark@-fno-analyzer |
Joshua Haberman | 982b634 | 2020-11-05 15:32:20 -0800 | [diff] [blame] | 21 | |
| 22 | build:asan-fuzzer --copt=-fsanitize=address,fuzzer --linkopt=-fsanitize=address,fuzzer --define fuzz=true |