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
{{ message }}
This repository was archived by the owner on Jun 20, 2025. It is now read-only.
Along with the checked in sources in the repo, Bazel emits generated code to either bazel-bin or bazel-genfiles. Since checked-in code frequently imports generated code, toolchain support for multiple parallel source roots is required.
Since no such support previously existed, layout_action was added to generate a symlink tree. The kernel compiler does however support this via the --multi-root option.
We should extract out a kernel compile action then incorporate it to the existing rules.
Along with the checked in sources in the repo, Bazel emits generated code to either
bazel-binorbazel-genfiles. Since checked-in code frequently imports generated code, toolchain support for multiple parallel source roots is required.Since no such support previously existed,
layout_actionwas added to generate a symlink tree. The kernel compiler does however support this via the--multi-rootoption.We should extract out a kernel compile action then incorporate it to the existing rules.