]> git.proxmox.com Git - mirror_edk2.git/commitdiff
BaseTools: Fix a bug for FixedPcd value generation in AutoGen file
authorYonghong Zhu <yonghong.zhu@intel.com>
Wed, 13 Jul 2016 09:00:03 +0000 (17:00 +0800)
committerYonghong Zhu <yonghong.zhu@intel.com>
Mon, 18 Jul 2016 00:51:27 +0000 (08:51 +0800)
If the library is listed in [Components] section for build only, its
used FixedPcd Value is not generated into AutoGen code. This patch
cover this case to generate the FixedPcd Value in AutoGen file.

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>
BaseTools/Source/Python/AutoGen/GenC.py

index d25d371a468d07a7dd74a02e5a47869d195404e2..29951e39690d4cc5d6374e7e37dc6930065d2daa 100644 (file)
@@ -1224,7 +1224,7 @@ def CreateLibraryPcdCode(Info, AutoGenC, AutoGenH, Pcd):
         AutoGenH.Append('#define %s  %s_gPcd_FixedAtBuild_%s\n' %(GetModeName, Type, TokenCName))\r
         AutoGenH.Append('//#define %s  ASSERT(FALSE)  // It is not allowed to set value for a FIXED_AT_BUILD PCD\n' % SetModeName)\r
         \r
-        if PcdItemType == TAB_PCDS_FIXED_AT_BUILD and key in Info.ConstPcd:\r
+        if PcdItemType == TAB_PCDS_FIXED_AT_BUILD and (key in Info.ConstPcd or (Info.IsLibrary and not Info._ReferenceModules)):\r
             AutoGenH.Append('#define _PCD_VALUE_%s %s\n' %(TokenCName, Pcd.DefaultValue))\r
         \r
         if PcdItemType == TAB_PCDS_FIXED_AT_BUILD:\r