aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tools/cpp')
-rw-r--r--tools/cpp/BUILD15
-rw-r--r--tools/cpp/CROSSTOOL40
2 files changed, 0 insertions, 55 deletions
diff --git a/tools/cpp/BUILD b/tools/cpp/BUILD
index c7df6cfc70..4e93a314d6 100644
--- a/tools/cpp/BUILD
+++ b/tools/cpp/BUILD
@@ -39,7 +39,6 @@ cc_toolchain_suite(
"x64_windows|compiler": ":cc-compiler-x64_windows",
"x64_windows_msvc|compiler": ":cc-compiler-x64_windows_msvc",
"ppc|compiler": ":cc-compiler-ppc",
- "ios_x86_64|compiler": ":cc-compiler-ios_x86_64",
},
)
@@ -155,20 +154,6 @@ cc_toolchain(
supports_param_files = 1,
)
-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 = 0,
-)
-
filegroup(
name = "every-file-x64_windows",
srcs = [
diff --git a/tools/cpp/CROSSTOOL b/tools/cpp/CROSSTOOL
index bfe3e80aff..0922cf3363 100644
--- a/tools/cpp/CROSSTOOL
+++ b/tools/cpp/CROSSTOOL
@@ -43,12 +43,6 @@ default_toolchain {
cpu: "ppc"
toolchain_identifier: "local_linux"
}
-
-default_toolchain {
- cpu: "ios_x86_64"
- toolchain_identifier: "ios_x86_64"
-}
-
toolchain {
abi_version: "armeabi-v7a"
abi_libc_version: "armeabi-v7a"
@@ -813,37 +807,3 @@ toolchain {
compiler_flag: "-Xcompilation-mode=opt"
}
}
-
-# Stub crosstool to allow construction of apple crosstool configuration in a
-# static configuration set.
-# TODO(b/33804121): Remove this once dynamic configurations are in place.
-toolchain {
- toolchain_identifier: "ios_x86_64"
- host_system_name: "x86_64-apple-macosx"
- target_system_name: "x86_64-apple-ios"
- target_cpu: "ios_x86_64"
- target_libc: "ios"
- compiler: "compiler"
- abi_version: "local"
- abi_libc_version: "local"
- supports_gold_linker: false
- supports_incremental_linker: false
- supports_fission: false
- supports_interface_shared_objects: false
- supports_normalizing_ar: false
- supports_start_end_lib: false
-
- tool_path { name: "ar" path: "/bin/false" }
- tool_path { name: "compat-ld" path: "/bin/false" }
- tool_path { name: "cpp" path: "/bin/false" }
- tool_path { name: "dwp" path: "/bin/false" }
- tool_path { name: "gcc" path: "/bin/false" }
- tool_path { name: "gcov" path: "/bin/false" }
- tool_path { name: "ld" path: "/bin/false" }
-
- tool_path { name: "nm" path: "/bin/false" }
- tool_path { name: "objcopy" path: "/bin/false" }
- tool_path { name: "objdump" path: "/bin/false" }
- tool_path { name: "strip" path: "/bin/false" }
- linking_mode_flags { mode: DYNAMIC }
-}