From de9256f61a9d71a30b175e46116fc5d87063ceaa Mon Sep 17 00:00:00 2001 From: "William D. Irons" Date: Fri, 4 May 2018 08:19:03 -0500 Subject: 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 --- third_party/mkl/BUILD | 2 ++ 1 file changed, 2 insertions(+) (limited to 'third_party/mkl') 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": [] }), ) -- cgit v1.2.3