Chi Wang
Chi Wang
By default, `clang` is detected for cpp configs. While `--cpp_env_json` can be used to override the default environment variables during toolchain generation, there isn't a way to override platform constraints....
Fixes #12417. Fixes #16264.
Add flag `--experimental_remote_build_event_upload` which controls the way Bazel uploads files referenced in BEP to remote cache. It defaults to `all` which maintains current behaviour: Bazel uploads all local files referenced...
## Background Disk cache is a local supplement for the remote cache and can be used solely or combined with the remote cache. When both disk cache and remote cache...
## Background If remote cache is enabled, Bazel will upload blobs referenced in the BEP to remote cache and replace the file path in the BEP with URI pointing to...
When using `--experimental_remote_build_event_upload=minimal`, instead of querying remote cache to decide whether convert local path of a file to `bytestream://`, it now always use `bytestream://` for BEP referenced files. Closes https://github.com/bazelbuild/bazel/pull/16999.
### Description of the feature request: When building without the bytes, Bazel defers the download of outputs until it needs them, e.g. at the start of executing local actions. However,...