Author: peterw
Date: Mon Dec 11 06:02:38 2006
New Revision: 25123
URL:
http://svn.reactos.org/svn/reactos?rev=25123&view=rev
Log:
- Oops forgot to remove the 'rem's, and changed makex.cmd to use -x1 instead.
Modified:
trunk/tools/mingw-make/make.cmd
trunk/tools/mingw-make/makex.cmd
Modified: trunk/tools/mingw-make/make.cmd
URL:
http://svn.reactos.org/svn/reactos/trunk/tools/mingw-make/make.cmd?rev=2512…
==============================================================================
--- trunk/tools/mingw-make/make.cmd (original)
+++ trunk/tools/mingw-make/make.cmd Mon Dec 11 06:02:38 2006
@@ -2,4 +2,4 @@
for /f "usebackq" %%i in (`cpucount`) do set CPUCOUNT=%%i
echo %CPUCOUNT% Processors detected.
-rem mingw32-make -j %CPUCOUNT% %*
+mingw32-make -j %CPUCOUNT% %*
Modified: trunk/tools/mingw-make/makex.cmd
URL:
http://svn.reactos.org/svn/reactos/trunk/tools/mingw-make/makex.cmd?rev=251…
==============================================================================
--- trunk/tools/mingw-make/makex.cmd (original)
+++ trunk/tools/mingw-make/makex.cmd Mon Dec 11 06:02:38 2006
@@ -1,5 +1,5 @@
@echo off
-for /f "usebackq" %%i in (`cpucount -x2`) do set CPUCOUNT=%%i
+for /f "usebackq" %%i in (`cpucount -x1`) do set CPUCOUNT=%%i
echo %CPUCOUNT% Processors detected (Automatically doubled).
-rem mingw32-make -j %CPUCOUNT% %*
+mingw32-make -j %CPUCOUNT% %*