You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
abseil-cpp versions later after 20220623.1 require at least a C++14
compatible compiler to build. This, in turn, is required to build
protobuf version 22 and later. Bazel 7 is already compatible, but Bazel
6 requires these flags.
Copy file name to clipboardExpand all lines: .bazelrc
+18-2Lines changed: 18 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1,8 +1,24 @@
1
1
build --enable_platform_specific_config
2
2
3
-
#Windows needs --worker_quit_after_build due to workers not being shut down when the compiler tools need to be rebuilt (resulting in 'file in use' errors). See Bazel Issue#10498.
3
+
# Needed to build versions of abseil-cpp newer than 20220624.1 under Bazel 6.
4
+
# Can be removed after moving to Bazel 7. Borrowed from:
0 commit comments