From f7e5aef145c33968f658eb2260e25630dc41cc67 Mon Sep 17 00:00:00 2001 From: John Cater Date: Tue, 13 Nov 2018 08:33:20 -0800 Subject: [PATCH] Add cc_toolchain targets for the new entries in the default cc_toolchain_suite. Fixes #6662. Closes #6663. PiperOrigin-RevId: 221271701 --- tools/cpp/BUILD | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/tools/cpp/BUILD b/tools/cpp/BUILD index 59e11e9cdd1782..ddc34e45dcb526 100644 --- a/tools/cpp/BUILD +++ b/tools/cpp/BUILD @@ -91,17 +91,17 @@ cc_toolchain_suite( "armeabi-v7a|compiler": ":cc-compiler-armeabi-v7a", "darwin|compiler": ":cc-compiler-darwin", "freebsd|compiler": ":cc-compiler-freebsd", - "local|compiler": ":cc-compiler-local-local", + "local|compiler": ":cc-compiler-local", "x64_windows|compiler": ":cc-compiler-x64_windows", "x64_windows_msvc|compiler": ":cc-compiler-x64_windows_msvc", "ppc|compiler": ":cc-compiler-ppc", - "k8": ":cc-compiler-local-k8", - "piii": ":cc-compiler-local-piii", - "arm": ":cc-compiler-local-arm", - "aarch64": ":cc-compiler-local-aarch64", - "s390x": ":cc-compiler-local-s390x", - "ppc": ":cc-compiler-local-ppc", - "ppc64": ":cc-compiler-local-ppc64", + "k8": ":cc-compiler-local", + "piii": ":cc-compiler-local", + "arm": ":cc-compiler-local", + "aarch64": ":cc-compiler-local", + "s390x": ":cc-compiler-local", + "ppc": ":cc-compiler-local", + "ppc64": ":cc-compiler-local", "darwin": ":cc-compiler-darwin", "freebsd": ":cc-compiler-freebsd", "armeabi-v7a": ":cc-compiler-armeabi-v7a",