Skip to content

Commit b2f474c

Browse files
committed
fix: correct rules_cc 0.2.0 compatibility_proxy extension name
- Fix extension name from 'compatibility_proxy_repo' to 'compatibility_proxy' - Remove invalid tag class call compatibility_proxy_repo() - Resolves Linux CI toolchain resolution failures - Tested: builds successfully with correct extension names
1 parent 8c6b7ff commit b2f474c

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

MODULE.bazel

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,8 +112,7 @@ cc_configure = use_extension("@rules_cc//cc:extensions.bzl", "cc_configure")
112112
use_repo(cc_configure, "local_config_cc")
113113

114114
# Add compatibility proxy repository for rules_cc 0.2.0 (required for bzlmod)
115-
cc_compatibility = use_extension("@rules_cc//cc:extensions.bzl", "compatibility_proxy_repo")
116-
cc_compatibility.compatibility_proxy_repo()
115+
cc_compatibility = use_extension("@rules_cc//cc:extensions.bzl", "compatibility_proxy")
117116

118117
# Register both WASI SDK and C++ toolchains
119118
register_toolchains(

0 commit comments

Comments
 (0)