-
Notifications
You must be signed in to change notification settings - Fork 182
Expand file tree
/
Copy path.bazelrc
More file actions
25 lines (20 loc) · 931 Bytes
/
.bazelrc
File metadata and controls
25 lines (20 loc) · 931 Bytes
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
# Needed to work with ZetaSQL dependency.
# Zetasql is removed.
# This is a candidate for removal
build --cxxopt="-std=c++17"
build --host_cxxopt="-std=c++17"
# Needed to avoid zetasql proto error.
# Zetasql is removed.
# This is a candidate for removal
build --protocopt=--experimental_allow_proto3_optional
# icu@: In create_linking_context: in call to create_linking_context(),
# parameter 'user_link_flags' is deprecated and will be removed soon.
# It may be temporarily re-enabled by setting --incompatible_require_linker_input_cc_api=false
build --incompatible_require_linker_input_cc_api=false
# Force use of protoc from com_google_protobuf
build --proto_compiler=@com_google_protobuf//:protoc
# Add include path for Protobuf headers
build --cxxopt="-Iexternal/com_google_protobuf/src"
build --host_cxxopt="-Iexternal/com_google_protobuf/src"
# Disable Bzlmod to avoid conflicts with WORKSPACE
common --noenable_bzlmod