Revert "[WIN32] changed: use up to 4 parallel msbuild workers."
authorwsoltys <wiso@no.way>
Mon, 6 Jan 2014 17:48:43 +0000 (18:48 +0100)
committerwsoltys <wiso@no.way>
Mon, 6 Jan 2014 17:48:43 +0000 (18:48 +0100)
This reverts commit 162347f2b027ad7b333c5864a4153c5ece7c754f.

This change works fine if the windows vm is the only one compiling. Since the recent build logs showed a longer compile time when doing builds for all platforms I'll revert this for now to see if it was the culprit.

project/Win32BuildSetup/BuildSetup.bat
project/Win32BuildSetup/buildpvraddons.bat

index 084744d..54eab2a 100644 (file)
@@ -50,8 +50,8 @@ IF %comp%==vs2010 (
 
        IF EXIST "!NET!" (
                set msbuildemitsolution=1
-               set OPTS_EXE="..\VS2010Express\XBMC for Windows.sln" /m:4 /t:Build /p:Configuration="%buildconfig%"
-               set CLEAN_EXE="..\VS2010Express\XBMC for Windows.sln" /m:4 /t:Clean /p:Configuration="%buildconfig%"
+               set OPTS_EXE="..\VS2010Express\XBMC for Windows.sln" /t:Build /p:Configuration="%buildconfig%"
+               set CLEAN_EXE="..\VS2010Express\XBMC for Windows.sln" /t:Clean /p:Configuration="%buildconfig%"
        ) ELSE (
                IF EXIST "%VS100COMNTOOLS%\..\IDE\devenv.com" (
                        set NET="%VS100COMNTOOLS%\..\IDE\devenv.com"
index fe80009..1f43b51 100644 (file)
@@ -17,7 +17,7 @@ SET BUILT_ADDONS_DIR=%SOURCE_DIR%\addons
 
 REM check if MSBuild.exe is used because it requires different command line switches
 IF "%msbuildemitsolution%" == "1" (
-  set OPTS_EXE=%SOURCE_DIR%\project\VS2010Express\xbmc-pvr-addons.sln /m:4 /t:Build /p:Configuration="Release"
+  set OPTS_EXE=%SOURCE_DIR%\project\VS2010Express\xbmc-pvr-addons.sln /t:Build /p:Configuration="Release"
 ) ELSE (
   set OPTS_EXE=%SOURCE_DIR%\project\VS2010Express\xbmc-pvr-addons.sln /build Release
 )