Skip to content

Commit c25b76b

Browse files
committed
fix: add missing compatibility_proxy_repo() call for rules_cc 0.2.0
- Add compatibility_proxy_repo() extension call that was missing - This was the critical piece from the rules_wasm_component fork fix - Resolves 'No matching toolchains found' C++ toolchain error on Linux CI
1 parent b6b806e commit c25b76b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

MODULE.bazel

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@ cc_configure = use_extension("@rules_cc//cc:extensions.bzl", "cc_configure_exten
2323
use_repo(cc_configure, "local_config_cc")
2424

2525
# Add compatibility proxy repository for rules_cc 0.2.0 (required for bzlmod)
26-
cc_compatibility = use_extension("@rules_cc//cc:extensions.bzl", "compatibility_proxy")
26+
cc_compatibility = use_extension("@rules_cc//cc:extensions.bzl", "compatibility_proxy_repo")
27+
cc_compatibility.compatibility_proxy_repo()
2728

2829
# WebAssembly and component support
2930
bazel_dep(name = "rules_rust", version = "0.62.0")

0 commit comments

Comments
 (0)