From e283f126b5143eed5a8b0c69ee6ee433bb643a85 Mon Sep 17 00:00:00 2001 From: Marcel Hlopko Date: Mon, 27 May 2019 09:09:16 +0200 Subject: [PATCH] Add //cc:toolchain_type alias to allow forward migration with Bazel 0.27 This target will eventually be the canonical place for C++ toolchain type. Currently the actual target resides in @bazel_tools, but that will soon change. --- cc/BUILD | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/cc/BUILD b/cc/BUILD index 9a01f92..1038a03 100644 --- a/cc/BUILD +++ b/cc/BUILD @@ -1 +1,4 @@ -# Intentionally left empty +alias( + name = "toolchain_type", + actual = "@bazel_tools//tools/cpp:toolchain_type", +)