* [Patch] BaseTools: Fix the build error caused by eca980
@ 2018-04-10 13:28 Yonghong Zhu
2018-04-10 18:02 ` Laszlo Ersek
0 siblings, 1 reply; 3+ messages in thread
From: Yonghong Zhu @ 2018-04-10 13:28 UTC (permalink / raw)
To: edk2-devel
Roll back the fixed at build pcd collection to include the pcd in
Module and Library.
Contributed-under: TianoCore Contribution Agreement 1.1
Signed-off-by: Yonghong Zhu <yonghong.zhu@intel.com>
---
BaseTools/Source/Python/AutoGen/AutoGen.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/BaseTools/Source/Python/AutoGen/AutoGen.py b/BaseTools/Source/Python/AutoGen/AutoGen.py
index 9280ae4..dbc9f89 100644
--- a/BaseTools/Source/Python/AutoGen/AutoGen.py
+++ b/BaseTools/Source/Python/AutoGen/AutoGen.py
@@ -1277,11 +1277,11 @@ class PlatformAutoGen(AutoGen):
def CollectFixedAtBuildPcds(self):
for LibAuto in self.LibraryAutoGenList:
FixedAtBuildPcds = {}
ShareFixedAtBuildPcdsSameValue = {}
for Module in LibAuto._ReferenceModules:
- for Pcd in Module.FixedAtBuildPcds:
+ for Pcd in Module.FixedAtBuildPcds + LibAuto.FixedAtBuildPcds:
key = ".".join((Pcd.TokenSpaceGuidCName,Pcd.TokenCName))
if key not in FixedAtBuildPcds:
ShareFixedAtBuildPcdsSameValue[key] = True
FixedAtBuildPcds[key] = Pcd.DefaultValue
else:
--
2.6.1.windows.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [Patch] BaseTools: Fix the build error caused by eca980
2018-04-10 13:28 [Patch] BaseTools: Fix the build error caused by eca980 Yonghong Zhu
@ 2018-04-10 18:02 ` Laszlo Ersek
2018-04-11 1:50 ` Gao, Liming
0 siblings, 1 reply; 3+ messages in thread
From: Laszlo Ersek @ 2018-04-10 18:02 UTC (permalink / raw)
To: Yonghong Zhu, edk2-devel
Hi Yonghong,
On 04/10/18 15:28, Yonghong Zhu wrote:
> Roll back the fixed at build pcd collection to include the pcd in
> Module and Library.
>
> Contributed-under: TianoCore Contribution Agreement 1.1
> Signed-off-by: Yonghong Zhu <yonghong.zhu@intel.com>
> ---
> BaseTools/Source/Python/AutoGen/AutoGen.py | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/BaseTools/Source/Python/AutoGen/AutoGen.py b/BaseTools/Source/Python/AutoGen/AutoGen.py
> index 9280ae4..dbc9f89 100644
> --- a/BaseTools/Source/Python/AutoGen/AutoGen.py
> +++ b/BaseTools/Source/Python/AutoGen/AutoGen.py
> @@ -1277,11 +1277,11 @@ class PlatformAutoGen(AutoGen):
> def CollectFixedAtBuildPcds(self):
> for LibAuto in self.LibraryAutoGenList:
> FixedAtBuildPcds = {}
> ShareFixedAtBuildPcdsSameValue = {}
> for Module in LibAuto._ReferenceModules:
> - for Pcd in Module.FixedAtBuildPcds:
> + for Pcd in Module.FixedAtBuildPcds + LibAuto.FixedAtBuildPcds:
> key = ".".join((Pcd.TokenSpaceGuidCName,Pcd.TokenCName))
> if key not in FixedAtBuildPcds:
> ShareFixedAtBuildPcdsSameValue[key] = True
> FixedAtBuildPcds[key] = Pcd.DefaultValue
> else:
>
this change fixes the ArmVirtQemu build error for me.
I suggest using commit hash abbreviations longer than just 6 nibbles. 12
nibbles are more future proof (that size is used by the Linux kernel)
and it's also not a large burden to use. So, I suggest replacing
"eca980" in the subject line with "eca980c0c899".
With that change:
Tested-by: Laszlo Ersek <lersek@redhat.com>
Thanks!
Laszlo
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [Patch] BaseTools: Fix the build error caused by eca980
2018-04-10 18:02 ` Laszlo Ersek
@ 2018-04-11 1:50 ` Gao, Liming
0 siblings, 0 replies; 3+ messages in thread
From: Gao, Liming @ 2018-04-11 1:50 UTC (permalink / raw)
To: Laszlo Ersek, Zhu, Yonghong, edk2-devel@lists.01.org
Reviewed-by: Liming Gao <liming.gao@intel.com>
> -----Original Message-----
> From: edk2-devel [mailto:edk2-devel-bounces@lists.01.org] On Behalf Of Laszlo Ersek
> Sent: Wednesday, April 11, 2018 2:03 AM
> To: Zhu, Yonghong <yonghong.zhu@intel.com>; edk2-devel@lists.01.org
> Subject: Re: [edk2] [Patch] BaseTools: Fix the build error caused by eca980
>
> Hi Yonghong,
>
> On 04/10/18 15:28, Yonghong Zhu wrote:
> > Roll back the fixed at build pcd collection to include the pcd in
> > Module and Library.
> >
> > Contributed-under: TianoCore Contribution Agreement 1.1
> > Signed-off-by: Yonghong Zhu <yonghong.zhu@intel.com>
> > ---
> > BaseTools/Source/Python/AutoGen/AutoGen.py | 2 +-
> > 1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > diff --git a/BaseTools/Source/Python/AutoGen/AutoGen.py b/BaseTools/Source/Python/AutoGen/AutoGen.py
> > index 9280ae4..dbc9f89 100644
> > --- a/BaseTools/Source/Python/AutoGen/AutoGen.py
> > +++ b/BaseTools/Source/Python/AutoGen/AutoGen.py
> > @@ -1277,11 +1277,11 @@ class PlatformAutoGen(AutoGen):
> > def CollectFixedAtBuildPcds(self):
> > for LibAuto in self.LibraryAutoGenList:
> > FixedAtBuildPcds = {}
> > ShareFixedAtBuildPcdsSameValue = {}
> > for Module in LibAuto._ReferenceModules:
> > - for Pcd in Module.FixedAtBuildPcds:
> > + for Pcd in Module.FixedAtBuildPcds + LibAuto.FixedAtBuildPcds:
> > key = ".".join((Pcd.TokenSpaceGuidCName,Pcd.TokenCName))
> > if key not in FixedAtBuildPcds:
> > ShareFixedAtBuildPcdsSameValue[key] = True
> > FixedAtBuildPcds[key] = Pcd.DefaultValue
> > else:
> >
>
> this change fixes the ArmVirtQemu build error for me.
>
> I suggest using commit hash abbreviations longer than just 6 nibbles. 12
> nibbles are more future proof (that size is used by the Linux kernel)
> and it's also not a large burden to use. So, I suggest replacing
> "eca980" in the subject line with "eca980c0c899".
>
> With that change:
>
> Tested-by: Laszlo Ersek <lersek@redhat.com>
>
> Thanks!
> Laszlo
> _______________________________________________
> edk2-devel mailing list
> edk2-devel@lists.01.org
> https://lists.01.org/mailman/listinfo/edk2-devel
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2018-04-11 1:50 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-04-10 13:28 [Patch] BaseTools: Fix the build error caused by eca980 Yonghong Zhu
2018-04-10 18:02 ` Laszlo Ersek
2018-04-11 1:50 ` Gao, Liming
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox