aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/mkl
diff options
context:
space:
mode:
authorGravatar William D. Irons <wdirons@us.ibm.com>2018-05-04 08:19:03 -0500
committerGravatar Shanqing Cai <cais@google.com>2018-05-04 09:19:03 -0400
commitde9256f61a9d71a30b175e46116fc5d87063ceaa (patch)
treefa9a32ed06074f47fb644b61c03c69a96e4769f9 /third_party/mkl
parent6ba9573a702ea9e1290517cce4e5f73a14552ad9 (diff)
Add conditions:default to mkl build (#19008)
If building on a system that is not darwin, linux_x86_64, or windows, the select statement in third_party/mkl/BUILD fails to find a match and fails. Need to use no mkl libraries for non-x86 systems Fixes #18084
Diffstat (limited to 'third_party/mkl')
-rw-r--r--third_party/mkl/BUILD2
1 files changed, 2 insertions, 0 deletions
diff --git a/third_party/mkl/BUILD b/third_party/mkl/BUILD
index c2adf578c7..017613abb0 100644
--- a/third_party/mkl/BUILD
+++ b/third_party/mkl/BUILD
@@ -34,6 +34,7 @@ filegroup(
"@org_tensorflow//tensorflow:windows": [
"@mkl_windows//:LICENSE",
],
+ "//conditions:default": []
}),
visibility = ["//visibility:public"],
)
@@ -54,5 +55,6 @@ cc_library(
"@mkl_windows//:mkl_headers",
"@mkl_windows//:mkl_libs_windows",
],
+ "//conditions:default": []
}),
)