From b42892931944898cfb1f9f32cc3b75e70a385676 Mon Sep 17 00:00:00 2001 From: Ray Molenkamp Date: Sat, 16 Feb 2019 11:36:19 -0700 Subject: Windows: Fix building with llvm/clang 7.0.1 For llvm 6 the visual studio integration was 'not great' and we had our own, which broke when llvm 7.0.1 came out. llvm now has properly supported integration available on the VS market place hence we can retire our custom support. --- build_files/windows/configure_msbuild.cmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'build_files/windows') diff --git a/build_files/windows/configure_msbuild.cmd b/build_files/windows/configure_msbuild.cmd index bdd4ecc227a..28d9950cb11 100644 --- a/build_files/windows/configure_msbuild.cmd +++ b/build_files/windows/configure_msbuild.cmd @@ -9,7 +9,7 @@ if "%BUILD_ARCH%"=="x64" ( ) if "%WITH_CLANG%"=="1" ( - set CLANG_CMAKE_ARGS=-T"LLVM-vs2017" + set CLANG_CMAKE_ARGS=-T"llvm" if "%WITH_ASAN%"=="1" ( set ASAN_CMAKE_ARGS=-DWITH_COMPILER_ASAN=On ) -- cgit v1.2.3