mirror of https://github.com/acidanthera/audk.git
BaseTools:fixed the incorrect autogen makefile which cause build failure.
BZ:https://bugzilla.tianocore.org/show_bug.cgi?id=1729
On some build environment, build fails but on the other build machines,
build success. This is the regression issue introduced by commit
05217d210e
As Dict is unordered, an error occurs when extract the index of the Dict
in the order of the keys after the creation of a new item.
Keys are indexed inconsistently before and after adding a new item.
The logic of the program is to store the key's corresponding index as
reference data in the MakeFile and use it as part of the macro.
The data model is: $(LIST_%d) % Dict.keys().index(Key)
So for now, use OrdereDict instead of Dict.
Cc: Bob Feng <bob.c.feng@intel.com>
Cc: Liming Gao <liming.gao@intel.com>
Signed-off-by: Zhiju.Fan <zhijux.fan@intel.com>
Reviewed-by: Bob Feng <bob.c.feng@intel.com>
This commit is contained in:
parent
452b5ad61d
commit
35c2af00d8
|
@ -429,7 +429,7 @@ cleanlib:
|
|||
self.CommonFileDependency = []
|
||||
self.FileListMacros = {}
|
||||
self.ListFileMacros = {}
|
||||
self.ObjTargetDict = {}
|
||||
self.ObjTargetDict = OrderedDict()
|
||||
self.FileCache = {}
|
||||
self.LibraryBuildCommandList = []
|
||||
self.LibraryFileList = []
|
||||
|
@ -943,6 +943,12 @@ cleanlib:
|
|||
DependencyDict[File] = list(NewDepSet)
|
||||
|
||||
# Convert target description object to target string in makefile
|
||||
if self._AutoGenObject.BuildRuleFamily == TAB_COMPILER_MSFT and TAB_C_CODE_FILE in self._AutoGenObject.Targets:
|
||||
for T in self._AutoGenObject.Targets[TAB_C_CODE_FILE]:
|
||||
NewFile = self.PlaceMacro(str(T), self.Macros)
|
||||
if not self.ObjTargetDict.get(T.Target.SubDir):
|
||||
self.ObjTargetDict[T.Target.SubDir] = set()
|
||||
self.ObjTargetDict[T.Target.SubDir].add(NewFile)
|
||||
for Type in self._AutoGenObject.Targets:
|
||||
for T in self._AutoGenObject.Targets[Type]:
|
||||
# Generate related macros if needed
|
||||
|
@ -952,13 +958,6 @@ cleanlib:
|
|||
self.ListFileMacros[T.ListFileMacro] = []
|
||||
if T.GenIncListFile and T.IncListFileMacro not in self.ListFileMacros:
|
||||
self.ListFileMacros[T.IncListFileMacro] = []
|
||||
if self._AutoGenObject.BuildRuleFamily == TAB_COMPILER_MSFT and Type == TAB_C_CODE_FILE:
|
||||
NewFile = self.PlaceMacro(str(T), self.Macros)
|
||||
if self.ObjTargetDict.get(T.Target.SubDir):
|
||||
self.ObjTargetDict[T.Target.SubDir].add(NewFile)
|
||||
else:
|
||||
self.ObjTargetDict[T.Target.SubDir] = set()
|
||||
self.ObjTargetDict[T.Target.SubDir].add(NewFile)
|
||||
|
||||
Deps = []
|
||||
CCodeDeps = []
|
||||
|
|
Loading…
Reference in New Issue