aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/cpp/BUILD.tpl
diff options
context:
space:
mode:
Diffstat (limited to 'tools/cpp/BUILD.tpl')
-rw-r--r--tools/cpp/BUILD.tpl29
1 files changed, 0 insertions, 29 deletions
diff --git a/tools/cpp/BUILD.tpl b/tools/cpp/BUILD.tpl
index f2bf8cdefb..4fbfa9f268 100644
--- a/tools/cpp/BUILD.tpl
+++ b/tools/cpp/BUILD.tpl
@@ -49,7 +49,6 @@ cc_toolchain_suite(
toolchains = {
"%{name}|%{compiler}": ":cc-compiler-%{name}",
"armeabi-v7a|compiler": ":cc-compiler-armeabi-v7a",
- "ios_x86_64|compiler": ":cc-compiler-ios_x86_64",
},
)
@@ -109,31 +108,3 @@ toolchain(
toolchain_type = "@bazel_tools//tools/cpp:toolchain_type",
)
-# ios crosstool configuration requires a default toolchain for the
-# ios_x86_64 cpu.
-cc_toolchain(
- name = "cc-compiler-ios_x86_64",
- all_files = ":empty",
- compiler_files = ":empty",
- cpu = "local",
- dwp_files = ":empty",
- dynamic_runtime_libs = [":empty"],
- linker_files = ":empty",
- objcopy_files = ":empty",
- static_runtime_libs = [":empty"],
- strip_files = ":empty",
- supports_param_files = 1,
-)
-
-toolchain(
- name = "cc-toolchain-ios_x86_64",
- exec_compatible_with = [
- # TODO(katre): add autodiscovered constraints for host CPU and OS.
- ],
- target_compatible_with = [
- "@bazel_tools//platforms:x86_64",
- "@bazel_tools//platforms:ios",
- ],
- toolchain = ":cc-compiler-ios_x86_64",
- toolchain_type = "@bazel_tools//tools/cpp:toolchain_type",
-)