[Bf-blender-cvs] [b4289293194] blender2.7: Windows: Fix building with llvm/clang 7.0.1

Ray Molenkamp noreply at git.blender.org
Sat Feb 16 19:43:47 CET 2019


Commit: b42892931944898cfb1f9f32cc3b75e70a385676
Author: Ray Molenkamp
Date:   Sat Feb 16 11:36:19 2019 -0700
Branches: blender2.7
https://developer.blender.org/rBb42892931944898cfb1f9f32cc3b75e70a385676

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.

===================================================================

M	build_files/windows/configure_msbuild.cmd

===================================================================

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
 	)



More information about the Bf-blender-cvs mailing list