mirror of https://github.com/acidanthera/audk.git
BaseTools: support building the same INF more than once with -m option
Currently DSC file [Components] Section can support building the same INF more than once for the same arch, this patch support build with -m option to generate multiple instances. Cc: Liming Gao <liming.gao@intel.com> Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Yonghong Zhu <yonghong.zhu@intel.com> Reviewed-by: Liming Gao <liming.gao@intel.com>
This commit is contained in:
parent
9f14de3b8e
commit
16bad1fbaf
|
@ -1736,7 +1736,10 @@ class Build():
|
||||||
MaList = []
|
MaList = []
|
||||||
for Arch in Wa.ArchList:
|
for Arch in Wa.ArchList:
|
||||||
GlobalData.gGlobalDefines['ARCH'] = Arch
|
GlobalData.gGlobalDefines['ARCH'] = Arch
|
||||||
Ma = ModuleAutoGen(Wa, self.ModuleFile, BuildTarget, ToolChain, Arch, self.PlatformFile)
|
Pa = PlatformAutoGen(Wa, self.PlatformFile, BuildTarget, ToolChain, Arch)
|
||||||
|
for Module in Pa.Platform.Modules:
|
||||||
|
if self.ModuleFile.Dir == Module.Dir and self.ModuleFile.File == Module.File:
|
||||||
|
Ma = ModuleAutoGen(Wa, Module, BuildTarget, ToolChain, Arch, self.PlatformFile)
|
||||||
if Ma == None: continue
|
if Ma == None: continue
|
||||||
MaList.append(Ma)
|
MaList.append(Ma)
|
||||||
self.BuildModules.append(Ma)
|
self.BuildModules.append(Ma)
|
||||||
|
|
Loading…
Reference in New Issue