aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--BUILD9
1 files changed, 9 insertions, 0 deletions
diff --git a/BUILD b/BUILD
index 14e114c054..93543f27a4 100644
--- a/BUILD
+++ b/BUILD
@@ -93,3 +93,12 @@ genrule(
# Public but bazel-only visibility.
visibility = ["//:__subpackages__"],
)
+
+# This is a workaround for fetching Bazel toolchains, for remote execution.
+# See https://github.com/bazelbuild/bazel/issues/3246.
+# Will be removed once toolchain fetching is supported.
+filegroup(
+ name = "dummy_toolchain_reference",
+ srcs = ["@bazel_toolchains//configs/debian8_clang/0.1.0:empty"],
+ visibility = ["//visibility:public"],
+)