Fix ./configure on Windows (#11775)

* Fix ./configure on Windows

* Disable bitwise_ops_test on Windows
This commit is contained in:
Yun Peng 2017-07-27 20:09:24 +02:00 committed by Vijay Vasudevan
parent f40189d262
commit a4a3a3335b
3 changed files with 5 additions and 4 deletions

4
configure vendored
View File

@ -8,7 +8,7 @@ if [ -z "$PYTHON_BIN_PATH" ]; then
fi
# Set all env variables
$PYTHON_BIN_PATH configure.py
"$PYTHON_BIN_PATH" configure.py
echo "Configuration finished"
echo "Configuration finished"

View File

@ -240,7 +240,7 @@ def run_gen_git_source(environ_cp):
Args:
environ_cp: copy of the os.environ.
"""
cmd = '%s tensorflow/tools/git/gen_git_source.py --configure %s' % (
cmd = '"%s" tensorflow/tools/git/gen_git_source.py --configure %s' % (
environ_cp.get('PYTHON_BIN_PATH'), os.getcwd())
os.system(cmd)
@ -379,7 +379,7 @@ def check_bazel_version(min_version):
min_version: string for minimum bazel version.
"""
try:
curr_version = run_shell('bazel version')
curr_version = run_shell('bazel --batch version')
except subprocess.CalledProcessError:
print('Cannot find bazel. Please install bazel.')
sys.exit(0)

View File

@ -2177,6 +2177,7 @@ cuda_py_test(
":dtypes",
":framework_test_lib",
],
tags = ["no_windows"],
)
cuda_py_test(