public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
From: "Liming Gao" <liming.gao@intel.com>
To: "Kinney, Michael D" <michael.d.kinney@intel.com>,
	"Feng, Bob C" <bob.c.feng@intel.com>,
	"devel@edk2.groups.io" <devel@edk2.groups.io>
Cc: "Shi, Steven" <steven.shi@intel.com>,
	"afish@apple.com" <afish@apple.com>,
	"Laszlo Ersek (lersek@redhat.com)" <lersek@redhat.com>,
	"leif.lindholm@linaro.org" <leif.lindholm@linaro.org>
Subject: Re: [Patch][edk2-stable201908] BaseTools: fix an incremental build issue.
Date: Wed, 28 Aug 2019 16:10:59 +0000	[thread overview]
Message-ID: <4A89E2EF3DFEDB4C8BFDE51014F606A14E4DDBDD@SHSMSX104.ccr.corp.intel.com> (raw)
In-Reply-To: <E92EE9817A31E24EB0585FDF735412F5B9DA5743@ORSMSX113.amr.corp.intel.com>

Mike:
  I add notes in BZ. Current problem is that the change in INF file will not trig rebuild. For example:

1st build:
build -p MdeModulePkg\MdeModulePkg.dsc -a IA32 -m MdeModulePkg\Application\HelloWorld\HelloWorld.inf

2st build with below change 
update MdeModulePkg\Application\HelloWorld\HelloWorld.inf
and remove MdeModulePkg/MdeModulePkg.dec from [Packages] section

2st build should update Makefile and trig build. But now, there is no build trig. 

So, this is the critical incremental build issue.


Thanks
Liming
> -----Original Message-----
> From: Kinney, Michael D
> Sent: Wednesday, August 28, 2019 11:56 PM
> To: Gao, Liming <liming.gao@intel.com>; Feng, Bob C <bob.c.feng@intel.com>; devel@edk2.groups.io; Kinney, Michael D
> <michael.d.kinney@intel.com>
> Cc: Shi, Steven <steven.shi@intel.com>; afish@apple.com; Laszlo Ersek (lersek@redhat.com) <lersek@redhat.com>;
> leif.lindholm@linaro.org
> Subject: RE: [Patch][edk2-stable201908] BaseTools: fix an incremental build issue.
> 
> Bob and Liming,
> 
> What is an example test case that fails?  Please add to BZ.
> 
> We need this information to test that this fix resolves the
> issue.
> 
> Mike
> 
> > -----Original Message-----
> > From: Gao, Liming
> > Sent: Wednesday, August 28, 2019 8:26 AM
> > To: Feng, Bob C <bob.c.feng@intel.com>;
> > devel@edk2.groups.io
> > Cc: Shi, Steven <steven.shi@intel.com>; Kinney, Michael D
> > <michael.d.kinney@intel.com>; afish@apple.com; Laszlo
> > Ersek (lersek@redhat.com) <lersek@redhat.com>;
> > leif.lindholm@linaro.org
> > Subject: RE: [Patch][edk2-stable201908] BaseTools: fix an
> > incremental build issue.
> >
> > Bob:
> >   This is the critical regression issue for the
> > incremental build. I request to catch it in this stable
> > tag 201908.
> >
> >   This patch corrects the behavior. Reviewed-by: Liming
> > Gao <liming.gao@intel.com>
> >
> > Thanks
> > Liming
> > > -----Original Message-----
> > > From: Feng, Bob C
> > > Sent: Wednesday, August 28, 2019 4:52 PM
> > > To: devel@edk2.groups.io
> > > Cc: Feng, Bob C <bob.c.feng@intel.com>; Gao, Liming
> > > <liming.gao@intel.com>; Shi, Steven
> > <steven.shi@intel.com>
> > > Subject: [Patch][edk2-stable201908] BaseTools: fix an
> > incremental build issue.
> > >
> > > BZ: https://bugzilla.tianocore.org/show_bug.cgi?id=2137
> > >
> > > This patch is going to fix a regression issue of
> > incremental build
> > > which was introduced by the commit 94459080c.
> > > The changing on INF file will not trigger module
> > rebuild.
> > >
> > > Signed-off-by: Bob Feng <bob.c.feng@intel.com>
> > > Cc: Liming Gao <liming.gao@intel.com>
> > > Cc: Steven Shi <steven.shi@intel.com>
> > > ---
> > >  BaseTools/Source/Python/AutoGen/ModuleAutoGen.py | 8
> > ++------
> > >  1 file changed, 2 insertions(+), 6 deletions(-)
> > >
> > > diff --git
> > a/BaseTools/Source/Python/AutoGen/ModuleAutoGen.py
> > > b/BaseTools/Source/Python/AutoGen/ModuleAutoGen.py
> > > index 2cd0d3859e..f610365f6d 100755
> > > --- a/BaseTools/Source/Python/AutoGen/ModuleAutoGen.py
> > > +++ b/BaseTools/Source/Python/AutoGen/ModuleAutoGen.py
> > > @@ -1764,16 +1764,12 @@ class ModuleAutoGen(AutoGen):
> > >              for f in self.AutoGenDepSet:
> > >                  FileSet.add (f.Path)
> > >
> > >              if os.path.exists (self.TimeStampPath):
> > >                  os.remove (self.TimeStampPath)
> > > -            with tempfile.NamedTemporaryFile('w+',
> > dir=os.path.dirname(self.TimeStampPath), delete=False) as
> > tf:
> > > -                for f in FileSet:
> > > -                    tf.write(f)
> > > -                    tf.write("\n")
> > > -                tempname = tf.name
> > > -            SaveFileOnChange(self.TimeStampPath,
> > tempname, False)
> > > +
> > > +            SaveFileOnChange(self.TimeStampPath,
> > "\n".join(FileSet),
> > > + False)
> > >
> > >          # Ignore generating makefile when it is a
> > binary module
> > >          if self.IsBinaryModule:
> > >              return
> > >
> > > --
> > > 2.20.1.windows.1


  reply	other threads:[~2019-08-28 16:11 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-08-28  8:52 [Patch][edk2-stable201908] BaseTools: fix an incremental build issue Bob Feng
2019-08-28 15:26 ` Liming Gao
2019-08-28 15:56   ` Michael D Kinney
2019-08-28 16:10     ` Liming Gao [this message]
2019-08-28 17:31       ` Michael D Kinney
2019-08-28 18:06         ` [edk2-devel] " Michael D Kinney
2019-08-28 18:40         ` Michael D Kinney
2019-08-29  3:16           ` Bob Feng

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=4A89E2EF3DFEDB4C8BFDE51014F606A14E4DDBDD@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