• Home
  • Raw
  • Download

Lines Matching refs:constraint

89 constraint values with `exec_compatible_with` and `target_compatible_with`. A
90 toolchain matches a platform when the toolchain’s constraint values are a
91 **SUBSET** of the platform's constraint values.
107 2. Bazel looks for a toolchain such that the toolchain's constraint values
108 are a **SUBSET** of the constraint values of the platform of the build
113 constraint values: (`linux`, `x86_64`).
118 two constraint values: (`linux`, `x86_64`).
122 constraint values (`android`, `{cpu}`).
131 is returned because its constraint values (`linux`, `x86_64`) are a subset
132 of the platform's constraint values (`linux`, `x86_64`). Otherwise, if
135 2. The versioned toolchains are skipped because their constraint values
137 the platform's constraint values (`linux`, `x86_64`).
139 its constraint values (`linux`, `x86_64`) are a subset
140 of the platform's constraint values (`linux`, `x86_64`)
147 is returned because its constraint values (`android`, `arm64`) are a subset
148 of the platform's constraint values (`android`, `arm64`). Otherwise, if
151 2. The versioned toolchains are skipped because their constraint values
153 the platform's constraint values (`android`, `arm64`).
155 its constraint values (`android`, `arm64`) are a subset
156 of the platform's constraint values (`android`, `arm64`)
160 applied on the `cc_*` target so its platform has constraint values
168 * Its execution platform has constraint values (`linux`, `x86_64`)
169 * Its target platform has constraint values (`android`, `{target_cpu}`) where
194 * Its execution platform has constraint values
196 * Its target platform has constraint values
203 `1_user_linux_x86_64_clang_toolchain` is returned because its constraint
205 constraint values (`linux`, `x86_64`, `{toolchain_version}`). However,
212 its constraint values (`linux`, `x86_64` `{toolchain_version}`) are a subset
213 of the execution platform's constraint values
224 constraint values (`android`, `{target_cpu}`) are a subset of the target
225 platform's constraint values
232 …its constraint values (`android`, `{target_cpu}` `{toolchain_version}`) are a subset of the target…