Skip to content

Commit

Permalink
Fix typo. Also do not override host_cpu for msvc.
Browse files Browse the repository at this point in the history
RELNOTES: None.
PiperOrigin-RevId: 156107235
  • Loading branch information
dslomov committed May 15, 2017
1 parent eb565f4 commit 39f328c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/ci/windows/compile_windows.sh
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,10 @@ if [ -n "${release_label}" ]; then
fi

# On windows-msvc-x86_64, we build a MSVC Bazel
OPTS="--cpu=x64_windown_msys --host_cpu=x64_windows_msys"
OPTS="--cpu=x64_windows_msys --host_cpu=x64_windows_msys"
MSVC_LABEL=""
if [[ $PLATFORM_NAME == windows-msvc-x86_64* ]]; then
OPTS="--cpu=x64_windows_msvc --host_cpu=x64_windows_msvc --copt=/w"
OPTS="--cpu=x64_windows_msvc --copt=/w"
MSVC_LABEL="-msvc"
fi

Expand Down

0 comments on commit 39f328c

Please sign in to comment.