We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c1d783e + b73c8c3 commit bd243e5Copy full SHA for bd243e5
defs.bzl
@@ -151,14 +151,9 @@ def cxx_bootstrap_library(
151
152
def _target_constraints(crate_root):
153
if crate_root and crate_root.startswith("rust/library/"):
154
- target_compatible_with = [
155
- "//constraints:library",
156
- "//constraints:build-script=false",
157
- ]
+ target_compatible_with = ["//constraints:library"]
158
elif crate_root and (crate_root.startswith("rust/compiler/") or crate_root.startswith("rust/src/")):
159
160
- "//constraints:compiler",
161
+ target_compatible_with = ["//constraints:compiler"]
162
else:
163
target_compatible_with = select({
164
"DEFAULT": ["prelude//:none"],
0 commit comments