Protocol Buffers - Google's data interchange format (grpc依赖)
https://developers.google.com/protocol-buffers/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.6 KiB
40 lines
1.6 KiB
build --cxxopt=-std=c++17 --host_cxxopt=-std=c++17 |
|
|
|
# Needed for java_lite_proto_library, that's using ProguardSpecProvider |
|
# Once the provider is ported to Starlark the flag may be removed. |
|
common --experimental_google_legacy_api |
|
|
|
build:dbg --compilation_mode=dbg |
|
|
|
build:opt --compilation_mode=opt |
|
|
|
build:san-common --config=dbg --strip=never --copt=-O0 --copt=-fno-omit-frame-pointer |
|
|
|
build:asan --config=san-common --copt=-fsanitize=address --linkopt=-fsanitize=address |
|
# ASAN hits ODR violations with shared linkage due to rules_proto. |
|
build:asan --dynamic_mode=off |
|
|
|
build:msan --config=san-common --copt=-fsanitize=memory --linkopt=-fsanitize=memory |
|
build:msan --copt=-fsanitize-memory-track-origins |
|
build:msan --copt=-fsanitize-memory-use-after-dtor |
|
build:msan --action_env=MSAN_OPTIONS=poison_in_dtor=1 |
|
|
|
build:tsan --config=san-common --copt=-fsanitize=thread --linkopt=-fsanitize=thread |
|
|
|
build:ubsan --config=san-common --copt=-fsanitize=undefined --linkopt=-fsanitize=undefined |
|
build:ubsan --action_env=UBSAN_OPTIONS=halt_on_error=1:print_stacktrace=1 |
|
# Workaround for the fact that Bazel links with $CC, not $CXX |
|
# https://github.com/bazelbuild/bazel/issues/11122#issuecomment-613746748 |
|
build:ubsan --copt=-fno-sanitize=function --copt=-fno-sanitize=vptr |
|
# Abseil passes nullptr to memcmp with 0 size |
|
build:ubsan --copt=-fno-sanitize=nonnull-attribute |
|
|
|
# TODO: migrate all dependencies from WORKSPACE to MODULE.bazel |
|
# https://github.com/protocolbuffers/protobuf/issues/14313 |
|
common --noenable_bzlmod |
|
|
|
# Important: this flag ensures that we remain compliant with the C++ layering |
|
# check. |
|
build --features=layering_check |
|
|
|
common --repo_env=BAZEL_NO_APPLE_CPP_TOOLCHAIN=1
|
|
|