mirror of
https://github.com/acidanthera/audk.git
synced 2025-07-26 07:04:28 +02:00
BaseTools: ignore the binary LIB file in gen_libs
For single module build, it would call gen_libs target. then if it use binary LIB file, it cause build failure. 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
86472c1bd2
commit
8832c79d64
@ -867,7 +867,8 @@ cleanlib:
|
|||||||
## For creating makefile targets for dependent libraries
|
## For creating makefile targets for dependent libraries
|
||||||
def ProcessDependentLibrary(self):
|
def ProcessDependentLibrary(self):
|
||||||
for LibraryAutoGen in self._AutoGenObject.LibraryAutoGenList:
|
for LibraryAutoGen in self._AutoGenObject.LibraryAutoGenList:
|
||||||
self.LibraryBuildDirectoryList.append(self.PlaceMacro(LibraryAutoGen.BuildDir, self.Macros))
|
if not LibraryAutoGen.IsBinaryModule:
|
||||||
|
self.LibraryBuildDirectoryList.append(self.PlaceMacro(LibraryAutoGen.BuildDir, self.Macros))
|
||||||
|
|
||||||
## Return a list containing source file's dependencies
|
## Return a list containing source file's dependencies
|
||||||
#
|
#
|
||||||
|
Loading…
x
Reference in New Issue
Block a user