You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
This repository defines named configurations based upon platform (e.g. linux-nixpkgs, macos-nixpkgs, linux-bindist, macos-bindist). In theory, some/all of the configuration could be migrated to platform discovery features using target_compatible_with or select().
Describe the solution you'd like
Review the OS-specific configuration settings and propose alternative implementations.
The text was updated successfully, but these errors were encountered:
- Add `--enable_platform_specific_config` to `.bazelrc.common`.
- Move MacOS- and Windows-specific environment variables to `.bazelrc.common` under their OS config names.
- Update code that generates bazelrc files for integration tests to include the new entries.
Related to #2099.
It turns out in Bazel 6.4.0, toolchain resolution occurs before incompatible targets. This causes failures when trying to specify target_compatible_with. chore: migrate to target_compatible_with #2106
Uh oh!
There was an error while loading. Please reload this page.
Is your feature request related to a problem? Please describe.
This repository defines named configurations based upon platform (e.g.
linux-nixpkgs
,macos-nixpkgs
,linux-bindist
,macos-bindist
). In theory, some/all of the configuration could be migrated to platform discovery features usingtarget_compatible_with
orselect()
.Describe the solution you'd like
Review the OS-specific configuration settings and propose alternative implementations.
The text was updated successfully, but these errors were encountered: