Show make version as well in AppVeyor MinGW builds

Also remove quotes which are not needed in Windows shell and show just the
first line of the versions.
This commit is contained in:
Vadim Zeitlin
2015-11-07 23:36:10 +01:00
parent 1d1c54cc6c
commit 69584dd3b4

View File

@@ -14,11 +14,13 @@ goto :eof
:mingw :mingw
cd build\msw cd build\msw
path C:\MinGW\bin;%path% path C:\MinGW\bin;%path%
echo "--- Compiler version:" echo --- Tools versions:
g++ --version g++ --version | head -1
echo "--- Binutils version:" mingw32-make --version | head -1
ar --version ar --version | head -1
echo "--- Starting the build" echo.
echo --- Starting the build
echo.
mingw32-make SHELL=cmd -f makefile.gcc setup_h BUILD=debug SHARED=0 USE_STC=0 USE_RIBBON=0 USE_PROPGRID=0 USE_AUI=0 mingw32-make SHELL=cmd -f makefile.gcc setup_h BUILD=debug SHARED=0 USE_STC=0 USE_RIBBON=0 USE_PROPGRID=0 USE_AUI=0
mingw32-make SHELL=cmd -j3 -f makefile.gcc BUILD=debug SHARED=0 USE_STC=0 USE_RIBBON=0 USE_PROPGRID=0 USE_AUI=0 mingw32-make SHELL=cmd -j3 -f makefile.gcc BUILD=debug SHARED=0 USE_STC=0 USE_RIBBON=0 USE_PROPGRID=0 USE_AUI=0
goto :eof goto :eof