File tree 4 files changed +7
-6
lines changed
4 files changed +7
-6
lines changed Original file line number Diff line number Diff line change 45
45
cache_key : Bazel7
46
46
image : " us-docker.pkg.dev/protobuf-build/containers/common/linux/bazel:7.1.2-cf84e92285ca133b9c8104ad7b14d70e953cbb8e"
47
47
targets : " //src/... //third_party/utf8_range/..."
48
- - config : { name: "Bazel7 with Bzlmod", flags: --enable_bzlmod --enable_workspace }
48
+ - config : { name: "Bazel7 with Bzlmod", flags: --enable_bzlmod --enable_workspace --cxxopt=-std=c++17 --host_cxxopt=-std=c++17 --cxxopt="-Wno-self-assign-overloaded" }
49
49
cache_key : Bazel7bzlmod
50
50
image : " us-docker.pkg.dev/protobuf-build/containers/common/linux/bazel:7.1.2-cf84e92285ca133b9c8104ad7b14d70e953cbb8e"
51
51
targets : " //src/... //third_party/utf8_range/..."
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ bazel_dep(
30
30
31
31
bazel_dep (
32
32
name = "rules_cc" ,
33
- version = "0.0.9 " ,
33
+ version = "0.0.13 " ,
34
34
)
35
35
36
36
bazel_dep (
Original file line number Diff line number Diff line change @@ -116,6 +116,7 @@ bzl_library(
116
116
"//bazel/common:proto_common_bzl" ,
117
117
"//bazel/common:proto_info_bzl" ,
118
118
"@proto_bazel_features//:features" ,
119
+ "@rules_cc//cc:find_cc_toolchain_bzl" ,
119
120
],
120
121
)
121
122
Original file line number Diff line number Diff line change @@ -90,11 +90,11 @@ def protobuf_deps():
90
90
)
91
91
92
92
if not native .existing_rule ("rules_cc" ):
93
- _github_archive (
93
+ http_archive (
94
94
name = "rules_cc" ,
95
- repo = "https://github.com/bazelbuild/rules_cc" ,
96
- commit = "c8c38f8c710cbbf834283e4777916b68261b359c" , # 0.0.9
97
- sha256 = "5f862a44bbd032e1b48ed53c9c211ba2a1da60e10c5baa01c97369c249299ecb " ,
95
+ urls = [ "https://github.com/bazelbuild/rules_cc/releases/download/0.0.13/rules_cc-0.0.13.tar.gz" ] ,
96
+ sha256 = "d9bdd3ec66b6871456ec9c965809f43a0901e692d754885e89293807762d3d80" ,
97
+ strip_prefix = "rules_cc-0.0.13 " ,
98
98
)
99
99
100
100
if not native .existing_rule ("rules_java" ):
You can’t perform that action at this time.
0 commit comments