public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
From: "Gao, Liming" <liming.gao@intel.com>
To: "Zhu, Yonghong" <yonghong.zhu@intel.com>,
	"edk2-devel@lists.01.org" <edk2-devel@lists.01.org>
Subject: Re: [Patch] BaseTools: Fix the bug to re-build uni file for Library
Date: Mon, 13 Nov 2017 03:16:11 +0000	[thread overview]
Message-ID: <4A89E2EF3DFEDB4C8BFDE51014F606A14E17CDE5@SHSMSX104.ccr.corp.intel.com> (raw)
In-Reply-To: <1510541529-19120-1-git-send-email-yonghong.zhu@intel.com>

Reviewed-by: Liming Gao <liming.gao@intel.com>

>-----Original Message-----
>From: Zhu, Yonghong
>Sent: Monday, November 13, 2017 10:52 AM
>To: edk2-devel@lists.01.org
>Cc: Gao, Liming <liming.gao@intel.com>
>Subject: [Patch] BaseTools: Fix the bug to re-build uni file for Library
>
>The root cause is Module's self.CanSkip() is before LibraryAutoGen,
>then when a uni file of library is changed, Module's self.CanSkip() is
>still true which cause the library is not regenerated.
>This patch change Module's self.CanSkip() after LibraryAutoGen.
>
>Fixes: https://bugzilla.tianocore.org/show_bug.cgi?id=759
>Cc: Liming Gao <liming.gao@intel.com>
>Contributed-under: TianoCore Contribution Agreement 1.1
>Signed-off-by: Yonghong Zhu <yonghong.zhu@intel.com>
>---
> BaseTools/Source/Python/AutoGen/AutoGen.py | 10 ++++++----
> 1 file changed, 6 insertions(+), 4 deletions(-)
>
>diff --git a/BaseTools/Source/Python/AutoGen/AutoGen.py
>b/BaseTools/Source/Python/AutoGen/AutoGen.py
>index 5317921..b3e7089 100644
>--- a/BaseTools/Source/Python/AutoGen/AutoGen.py
>+++ b/BaseTools/Source/Python/AutoGen/AutoGen.py
>@@ -4227,17 +4227,18 @@ class ModuleAutoGen(AutoGen):
>         if self.IsBinaryModule:
>             return
>
>         if self.IsMakeFileCreated:
>             return
>-        if self.CanSkip():
>-            return
>
>         if not self.IsLibrary and CreateLibraryMakeFile:
>             for LibraryAutoGen in self.LibraryAutoGenList:
>                 LibraryAutoGen.CreateMakeFile()
>
>+        if self.CanSkip():
>+            return
>+
>         if len(self.CustomMakefile) == 0:
>             Makefile = GenMake.ModuleMakefile(self)
>         else:
>             Makefile = GenMake.CustomMakefile(self)
>         if Makefile.Generate():
>@@ -4261,12 +4262,10 @@ class ModuleAutoGen(AutoGen):
>     #                                       dependent libraries will be created
>     #
>     def CreateCodeFile(self, CreateLibraryCodeFile=True):
>         if self.IsCodeFileCreated:
>             return
>-        if self.CanSkip():
>-            return
>
>         # Need to generate PcdDatabase even PcdDriver is binarymodule
>         if self.IsBinaryModule and self.PcdIsDriver != '':
>             CreatePcdDatabaseCode(self, TemplateString(), TemplateString())
>             return
>@@ -4277,10 +4276,13 @@ class ModuleAutoGen(AutoGen):
>
>         if not self.IsLibrary and CreateLibraryCodeFile:
>             for LibraryAutoGen in self.LibraryAutoGenList:
>                 LibraryAutoGen.CreateCodeFile()
>
>+        if self.CanSkip():
>+            return
>+
>         AutoGenList = []
>         IgoredAutoGenList = []
>
>         for File in self.AutoGenFileList:
>             if GenC.Generate(File.Path, self.AutoGenFileList[File], File.IsBinary):
>--
>2.6.1.windows.1



      reply	other threads:[~2017-11-13  3:13 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-11-13  2:52 [Patch] BaseTools: Fix the bug to re-build uni file for Library Yonghong Zhu
2017-11-13  3:16 ` Gao, Liming [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-list from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=4A89E2EF3DFEDB4C8BFDE51014F606A14E17CDE5@SHSMSX104.ccr.corp.intel.com \
    --to=devel@edk2.groups.io \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox