aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar rduan <rduan@google.com>2017-08-10 03:27:14 +0200
committerGravatar Marcel Hlopko <hlopko@google.com>2017-08-10 13:48:07 +0200
commite9ba68d195cf1399d1e1517fa48b73a8d1525b5a (patch)
treed43aef158827b886aa0f7738c6af888ec7d9dbfc
parent9e6549469a70fee7232792771171fa995632b773 (diff)
PiperOrigin-RevId: 164803219
-rw-r--r--tools/osx/crosstool/osx_archs.bzl15
1 files changed, 9 insertions, 6 deletions
diff --git a/tools/osx/crosstool/osx_archs.bzl b/tools/osx/crosstool/osx_archs.bzl
index 5ee87c6173..a55b3efabe 100644
--- a/tools/osx/crosstool/osx_archs.bzl
+++ b/tools/osx/crosstool/osx_archs.bzl
@@ -14,15 +14,18 @@
# limitations under the License.
# List of architectures supported by osx crosstool.
-OSX_TOOLS_ARCHS = [
- "armeabi-v7a",
+OSX_TOOLS_NON_DEVICE_ARCHS = [
"darwin_x86_64",
- "ios_x86_64",
"ios_i386",
+ "ios_x86_64",
+ "watchos_i386",
+ "tvos_x86_64",
+]
+
+OSX_TOOLS_ARCHS = [
+ "armeabi-v7a",
"ios_armv7",
"ios_arm64",
- "watchos_i386",
"watchos_armv7k",
- "tvos_x86_64",
"tvos_arm64",
-]
+] + OSX_TOOLS_NON_DEVICE_ARCHS