diff options
author | Yunhua Feng <yunhuax.feng@intel.com> | 2018-07-20 15:51:39 +0800 |
---|---|---|
committer | Yonghong Zhu <yonghong.zhu@intel.com> | 2018-07-24 16:28:56 +0800 |
commit | 5b73e17fb17c6935d894b0084f32421e717c247f (patch) | |
tree | 07ae031a8db6a573c7f1718a3c075b342cf4b490 /BaseTools/Source/Python | |
parent | bfa7eeb61d94623ddbe43b916a0bb1dc0f73a292 (diff) | |
download | edk2-5b73e17fb17c6935d894b0084f32421e717c247f.tar.gz edk2-5b73e17fb17c6935d894b0084f32421e717c247f.tar.bz2 edk2-5b73e17fb17c6935d894b0084f32421e717c247f.zip |
BaseTools: Fix the different token with the same PCD
If the different token with the same PCD names are used in the driver,
build can pass. If the different token with the same PCD name are used
in the different library, then the driver build will fail. The reason
is that the driver autogen.c is not generated correctly for the second
case. BaseTools should check the duplicated PCD name is the driver and
its linked libraries.
Cc: Liming Gao <liming.gao@intel.com>
Cc: Yonghong Zhu <yonghong.zhu@intel.com>
Contributed-under: TianoCore Contribution Agreement 1.1
Signed-off-by: Yunhua Feng <yunhuax.feng@intel.com>
Reviewed-by: Liming Gao <liming.gao@intel.com>
Diffstat (limited to 'BaseTools/Source/Python')
-rw-r--r-- | BaseTools/Source/Python/AutoGen/GenC.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/BaseTools/Source/Python/AutoGen/GenC.py b/BaseTools/Source/Python/AutoGen/GenC.py index 8a62cd22bd..8946e419a0 100644 --- a/BaseTools/Source/Python/AutoGen/GenC.py +++ b/BaseTools/Source/Python/AutoGen/GenC.py @@ -937,7 +937,7 @@ def CreateModulePcdCode(Info, AutoGenC, AutoGenH, Pcd): if Info.IsLibrary:
PcdList = Info.LibraryPcdList
else:
- PcdList = Info.ModulePcdList
+ PcdList = Info.ModulePcdList + Info.LibraryPcdList
PcdExCNameTest = 0
for PcdModule in PcdList:
if PcdModule.Type in PCD_DYNAMIC_EX_TYPE_SET and Pcd.TokenCName == PcdModule.TokenCName:
|