Keith Smiley

Results 1359 comments of Keith Smiley

i can't vouch for `bazel fetch --configure --force` working because https://github.com/bazelbuild/bazel/issues/27042, but that would at least be nicer syntax if it does! > should work whenever bazel clean --expunge does....

The module extension is marked reproducible

ah 1 other case that I forgot to mention, but is probably the most common one we see, and related to my `clean --expunge` confusion above: Users who only have...

bisected to https://github.com/bazelbuild/rules_swift/commit/9af31ccfeb6640112098b58a37dab874accdd4a3

I wrote some internal rule for this: ```bzl """Process a shared library, fixing its install name""" load("@bazel_skylib//lib:paths.bzl", "paths") load("@bazel_tools//tools/cpp:toolchain_utils.bzl", "find_cpp_toolchain", "use_cpp_toolchain") load("@rules_cc//cc/common:cc_common.bzl", "cc_common") load("@rules_cc//cc/common:cc_info.bzl", "CcInfo") def _impl(ctx): if len(ctx.attr.deps) !=...

> Is it not in CcToolchain somewhere? IIRC, there's an "all_file" attribute of CcToolchain. I've had to dig around in there to get some of the more esoteric tools. Otherwise,...

FWIW I also think we should just fix this upstream in the prebuilt version, considering it does this for linux correctly and there's no value in the current path since...

https://github.com/astral-sh/python-build-standalone/pull/914

i'm interested in testing this as well

do both of those need to be on or just `use_lto_native_object_directory`?