aboutsummaryrefslogtreecommitdiffhomepage
path: root/site
diff options
context:
space:
mode:
authorGravatar katre <jcater@google.com>2018-05-17 07:58:50 -0700
committerGravatar Copybara-Service <copybara-piper@google.com>2018-05-17 08:00:00 -0700
commitffb082f55218a6a5c5b0bb7808bc2d889073ead7 (patch)
tree30df2211f4b3a520a990aaf08c0aeecd37b602b2 /site
parenta96126624ef4ee24c2f1d92f49bc575c521bf135 (diff)
Add more detail on toolchain resolution
Trying to clarify the toolchain resolution process so I can link it from design docs in the future. Closes #5171. PiperOrigin-RevId: 196992276
Diffstat (limited to 'site')
-rw-r--r--site/docs/toolchains.md34
1 files changed, 20 insertions, 14 deletions
diff --git a/site/docs/toolchains.md b/site/docs/toolchains.md
index 2eb163f749..0458ea6860 100644
--- a/site/docs/toolchains.md
+++ b/site/docs/toolchains.md
@@ -6,6 +6,7 @@ title: Toolchains
# Toolchains
- [Overview](#overview)
+- [Toolchain Resolution](#toolchain-resolution)
- [Defining a toolchain](#defining-a-toolchain)
- [Creating a toolchain rule](#creating-a-toolchain-rule)
- [Creating a toolchain definition](#creating-a-toolchain-definition)
@@ -25,27 +26,32 @@ toolchain most appropriate to that build. It does so by matching the
[constraints](platforms.html#defining-a-platform) specified in the project's
`BUILD` file(s) with the constraints specified in the toolchain definition.
-**Note:** Some Bazel rules do not yet support toolchain resolution.
-
-When a target requests a toolchain, Bazel checks the list of registered
-toolchains and creates a dependency from the target to the first matching
-toolchain it finds. To find a matching toolchain, Bazel does the following:
-
-1. Looks through the registered toolchains, first from the `--extra_toolchains`
- flag, then from the `register_toolchains` calls in the project's `WORKSPACE`
- file.
+## Toolchain Resolution
-2. For each registered toolchain, Bazel performs the following checks:
+Inputs to the resolution mechanism include the required toolchain types (including
+none) and the target platform. The resolution mechanism outputs a single execution
+platform and a toolchain type-to-toolchain map. Toolchain resolution works as follows:
- a. Does the toolchain match the requested toolchain type? If not, skip it.
+1. Collect all available execution platforms, including the host. This is an ordered list.
+ - Execution platforms are collected from the following sources:
+ 1. Any extra execution platforms given on the command line via the [--extra_execution_platforms](https://docs.bazel.build/versions/master/command-line-reference.html#flag--extra_execution_platforms) flag.
+ 2. Any execution platforms in the `WORKSPACE` file, via the [register_execution_platforms](https://docs.bazel.build/versions/master/skylark/lib/globals.html#register_execution_platforms) function.
+ 3. The host platform.
+2. Collect all available toolchains. This is also an ordered list.
+ - Toolchains are collected from the following sources:
+ 1. Any extra toolchains given on the command line via the [--extra_toolchains](https://docs.bazel.build/versions/master/command-line-reference.html#flag--extra_toolchains)` flag.
+ 2. Any toolchains in the `WORKSPACE` file, via the [register_toolchains](https://docs.bazel.build/versions/master/skylark/lib/globals.html#register_toolchains) function.
+3. For each toolchain type and execution platform, select the first toolchain that matches the execution platform and target platform.
+4. With the full set of toolchains and execution platforms for each type, select the first execution platform that can satisfy all toolchain types.
- b. Do the toolchain's execution and target constraints match the constraints
- stated in the project's execution and target platforms? If yes, the
- toolchain is a match.
+Execution platforms listed first are preferred, and toolchains listed first are preferred.
+Every configured target has the same execution platform for all actions that target generates.
Because Bazel always selects the first matching toolchain, order the toolchains
by preference if you expect the possibility of multiple matches.
+**Note:** Some Bazel rules do not yet support toolchain resolution.
+
## Defining a toolchain
Defining a toolchain requires the following: