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
Copy file name to clipboardExpand all lines: extensions/gcc.bzl
+8-2Lines changed: 8 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -62,12 +62,16 @@ _attrs_tc = {
62
62
),
63
63
"use_system_toolchain": attr.bool(
64
64
default=False,
65
-
doc="TBD",
65
+
doc="Flag for toolchain creation to use host installed binaries. Not yet supported!",
66
+
),
67
+
"use_base_constraints_only": attr.bool(
68
+
default=False,
69
+
doc="Experimental. Attribute for flag toolchain creation to use only base platform constraints. Limits toolchain registration to 1 per base platform definition."
66
70
),
67
71
"runtime_ecosystem": attr.string(
68
72
default="posix",
69
73
mandatory=False,
70
-
doc="TBD",
74
+
doc="Attribute for identifing the system-level runtime environment a binary or target is built to run in.",
0 commit comments