summaryrefslogtreecommitdiff
path: root/BuildBIOS.bat
diff options
context:
space:
mode:
authorYonghong Zhu <yonghong.zhu@intel.com>2017-09-28 21:08:48 +0800
committerYonghong Zhu <yonghong.zhu@intel.com>2017-09-30 09:46:27 +0800
commit5ac9e5b74873c57860dbe22e04c26c4ee318ccb2 (patch)
tree6da898d15717749d9a47a4a7e8f3d6e56f1acb8b /BuildBIOS.bat
parentfa673e3638798c1fab18cf5e3cc4c3036fdb13e7 (diff)
downloadedk2-platforms-5ac9e5b74873c57860dbe22e04c26c4ee318ccb2.tar.xz
Add option /m to enable multiple thread build
current in windows it takes ~10 minutes to build a image, so we add /m option to use EDK II build tool's multiple thread build function, it can save about half build time. Cc: zwei4 <david.wei@intel.com> Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Yonghong Zhu <yonghong.zhu@intel.com> Reviewed-by: zwei4 <david.wei@intel.com>
Diffstat (limited to 'BuildBIOS.bat')
-rw-r--r--BuildBIOS.bat12
1 files changed, 10 insertions, 2 deletions
diff --git a/BuildBIOS.bat b/BuildBIOS.bat
index 4bb4b03ce3..baf7cdda14 100644
--- a/BuildBIOS.bat
+++ b/BuildBIOS.bat
@@ -12,6 +12,7 @@ set Compiler=/vs13
set Arch=/x64
set FabId=/B
set BoardId=/MN
+set buildthread=
:: Optional arguments
:OptLoop
@@ -86,6 +87,13 @@ if /i "%~1"=="/BG" (
goto OptLoop
)
+if /i "%~1"=="/m" (
+ set buildthread=/m
+ echo.
+ shift
+ goto OptLoop
+)
+
:: Required argument(s)
:: Require 2 input parameters
if "%~2"=="" goto Usage
@@ -96,8 +104,8 @@ set BuildTarget=%~2
:OptLoopEnd
echo ---- Call Build Script of Broxton ----
-echo calling : Platform\%PlatformName%PlatformPkg\BuildIFWI.bat %Compiler% %Arch% %BoardId% %FabId% /fspw %BuildFlags% MINN %BuildTarget%
-call Platform\%PlatformName%PlatformPkg\BuildIFWI.bat %Compiler% %Arch% %BoardId% %FabId% /fspw %BuildFlags% MINN %BuildTarget%
+echo calling : Platform\%PlatformName%PlatformPkg\BuildIFWI.bat %buildthread% %Compiler% %Arch% %BoardId% %FabId% /fspw %BuildFlags% MINN %BuildTarget%
+call Platform\%PlatformName%PlatformPkg\BuildIFWI.bat %buildthread% %Compiler% %Arch% %BoardId% %FabId% /fspw %BuildFlags% MINN %BuildTarget%
goto Exit