Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRay Molenkamp <github@lazydodo.com>2020-02-20 20:34:15 +0300
committerRay Molenkamp <github@lazydodo.com>2020-02-20 20:34:15 +0300
commita9b184bbc464b8b63c64d089d4d78e3e953e16dd (patch)
tree86b9aabe6c92bb750331a7fd4b0a1b9d11e550c6 /build_files/windows
parent282e8499b1092f57394711c638011af61dd29456 (diff)
windows: Add some more verbose logging to make.bat
Diffstat (limited to 'build_files/windows')
-rw-r--r--build_files/windows/detect_msvc_vswhere.cmd9
1 files changed, 9 insertions, 0 deletions
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%" == "" (