peakschris

Results 142 comments of peakschris

This is what I'm using in my MODULE.bazel file. We have converted to a 100% module based build: ``` bazel_dep(name = "hedron_compile_commands", dev_dependency = True) HEDRON_COMPILE_COMMANDS_TAG="204aa593e002cbd177d30f11f54cff3559110bb9" HEDRON_COMPILE_COMMANDS_INTEGRITY="sha256-mXK5x4jhnGgPGTo6oGoiUxK6MQcFmnWnKiv3k/qnCsk=" archive_override( module_name =...

This is where the request is made: https://github.com/bazelbuild/rules_go/blob/e7ddb9ea474e6b5137dfc074f913529df80d7e5c/go/private/sdk.bzl#L75

@fmeum thank you for looking at this! For us, we cannot source manage MODULE.bazel.lock because we don't use git and the unsupported merge of this huge file (it is 2MB...

@fmeum we use a custom VCS layer, with perforce as the backend. The VCS layer was written years ago and is in maintenance mode now, so it's practically impossible to...

I've actually stumbled on a way to avoid these queries: ``` bazel_dep(name = "rules_go", version = "0.47.1") go_sdk = use_extension("@rules_go//go:extensions.bzl", "go_sdk") go_sdk.download( version = "1.22.3", # explicitly specify SDK names/checksums...

@katre @lberki I'm not sure if you got the notification, but ping... If this PR [4/5] can be merged, we can start using C++ modules with bazel... in eager anticipation...

Hi @comius @trybka, is there any chance this feature could make it in soon? We are keenly awaiting it in one of the bazel 8 releases

@comius @trybka we are eagerly awaiting support for modules in Bazel. If you don't have time to review (this PR has now been waiting for 4 months), is there some...

We have a similar requirement but for a different use case. @rules_cc//cc/runfiles is a static library that is defined as part of rules_cc we have two different shared libraries that...