aboutsummaryrefslogtreecommitdiffhomepage
path: root/configure.py
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <gardener@tensorflow.org>2018-07-16 14:07:29 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-07-16 14:10:38 -0700
commit6e97fb388ad00df87beb58ebc5a1b02bd6a5dff0 (patch)
tree42c2b2c5df597a0cf5f74f8a874feafcce40f5cd /configure.py
parent646c179b2ca8e3366d2b0d27f5f14839aa49e658 (diff)
Disable more TF_NEED_* on Windows by default.
This simplifies ./configure process on Windows, we can remove them when we actually support the corresponding feature on Windows. PiperOrigin-RevId: 204804112
Diffstat (limited to 'configure.py')
-rw-r--r--configure.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/configure.py b/configure.py
index df6259778e..cd9d5d32a0 100644
--- a/configure.py
+++ b/configure.py
@@ -1451,6 +1451,11 @@ def main():
# TODO(ibiryukov): Investigate using clang as a cpu or cuda compiler on
# Windows.
environ_cp['TF_DOWNLOAD_CLANG'] = '0'
+ environ_cp['TF_ENABLE_XLA'] = '0'
+ environ_cp['TF_NEED_GDR'] = '0'
+ environ_cp['TF_NEED_VERBS'] = '0'
+ environ_cp['TF_NEED_MPI'] = '0'
+ environ_cp['TF_SET_ANDROID_WORKSPACE'] = '0'
if is_macos():
environ_cp['TF_NEED_JEMALLOC'] = '0'