Skip to content

Commit

Permalink
configure: Prefer cl.exe over clang-cl.exe
Browse files Browse the repository at this point in the history
This is a remake of 8e4c8be that was
undone by mistake in 8f49da6.

Change-Id: I9596b860dea90b042baa8b2b95b1e3b050e9b835
Reviewed-by: Oswald Buddenhagen <[email protected]>
  • Loading branch information
orgads committed Jan 4, 2018
1 parent 175d691 commit 534ad22
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions configure.bat
Original file line number Diff line number Diff line change
Expand Up @@ -157,10 +157,10 @@ rem Determine host spec
if "%PLATFORM%" == "" (
if not "%icl.exe%" == "" (
set PLATFORM=win32-icc
) else if not "%clang-cl.exe%" == "" (
set PLATFORM=win32-clang-msvc
) else if not "%cl.exe%" == "" (
set PLATFORM=win32-msvc
) else if not "%clang-cl.exe%" == "" (
set PLATFORM=win32-clang-msvc
) else if not "%g++.exe%" == "" (
set PLATFORM=win32-g++
) else (
Expand Down

0 comments on commit 534ad22

Please sign in to comment.