[Bf-blender-cvs] [a9b184bbc46] master: windows: Add some more verbose logging to make.bat

Ray Molenkamp noreply at git.blender.org
Thu Feb 20 18:34:22 CET 2020


Commit: a9b184bbc464b8b63c64d089d4d78e3e953e16dd
Author: Ray Molenkamp
Date:   Thu Feb 20 10:34:15 2020 -0700
Branches: master
https://developer.blender.org/rBa9b184bbc464b8b63c64d089d4d78e3e953e16dd

windows: Add some more verbose logging to make.bat

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

M	build_files/windows/detect_msvc_vswhere.cmd

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

diff --git a/build_files/windows/detect_msvc_vswhere.cmd b/build_files/windows/detect_msvc_vswhere.cmd
index a538e506b39..609375cee89 100644
--- a/build_files/windows/detect_msvc_vswhere.cmd
+++ b/build_files/windows/detect_msvc_vswhere.cmd
@@ -34,6 +34,9 @@ if "%VS_InstallDir%"=="" (
 
 set VCVARS=%VS_InstallDir%\VC\Auxiliary\Build\vcvarsall.bat
 if exist "%VCVARS%" (
+	if NOT "%verbose%" == "" (
+		echo calling "%VCVARS%" %BUILD_ARCH%
+	)
 	call "%VCVARS%" %BUILD_ARCH%
 ) else (
 	if NOT "%verbose%" == "" (
@@ -43,6 +46,9 @@ if exist "%VCVARS%" (
 )
 
 rem try msbuild
+if NOT "%verbose%" == "" (
+	echo Testing for MSBuild 
+)
 msbuild /version > NUL 
 if errorlevel 1 (
 	if NOT "%verbose%" == "" (
@@ -56,6 +62,9 @@ if NOT "%verbose%" == "" (
 )
 
 REM try the c++ compiler
+if NOT "%verbose%" == "" (
+	echo Testing for the C/C++ Compiler
+)
 cl 2> NUL 1>&2
 if errorlevel 1 (
 	if NOT "%verbose%" == "" (



More information about the Bf-blender-cvs mailing list