mirror of https://github.com/acidanthera/audk.git
BaseTools: Remove CanSkip calling for incremental build
REF: https://bugzilla.tianocore.org/show_bug.cgi?id=2978 If a module add a new PCD, the pcd token number will be reassigned. The new Pcd token number should be updated to all module's autogen files. CanSkip can only detect a single module's change but not others. CanSkip block the pcd token number update in incremental build, so this patch is going to remove this call. Signed-off-by: Bob Feng <bob.c.feng@intel.com> Cc: Liming Gao <gaoliming@byosoft.com.cn> Cc: Yuwei Chen <yuwei.chen@intel.com> Reviewed-by: Yuwei Chen<yuwei.chen@intel.com>
This commit is contained in:
parent
9641a7f975
commit
3a7a676114
|
@ -1822,9 +1822,6 @@ class ModuleAutoGen(AutoGen):
|
|||
for LibraryAutoGen in self.LibraryAutoGenList:
|
||||
LibraryAutoGen.CreateCodeFile()
|
||||
|
||||
# CanSkip uses timestamps to determine build skipping
|
||||
if self.CanSkip():
|
||||
return
|
||||
self.LibraryAutoGenList
|
||||
AutoGenList = []
|
||||
IgoredAutoGenList = []
|
||||
|
|
Loading…
Reference in New Issue