From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mail.byosoft.com.cn (mail.byosoft.com.cn [58.240.74.242]) by mx.groups.io with SMTP id smtpd.web08.8004.1604903921278563066 for ; Sun, 08 Nov 2020 22:38:42 -0800 Authentication-Results: mx.groups.io; dkim=missing; spf=none, err=permanent DNS error (domain: byosoft.com.cn, ip: 58.240.74.242, mailfrom: fengyunhua@byosoft.com.cn) Received: from LAPTOP2AECFQIA ([58.246.60.130]) (envelope-sender ) by 192.168.6.13 with ESMTP for ; Mon, 09 Nov 2020 14:38:38 +0800 X-WM-Sender: fengyunhua@byosoft.com.cn X-WM-AuthFlag: YES X-WM-AuthUser: fengyunhua@byosoft.com.cn From: "fengyunhua" To: , Cc: "'Liming Gao'" , "'Chen, Christine'" References: <20201030033939.2094-1-fengyunhua@byosoft.com.cn> <20201030033939.2094-3-fengyunhua@byosoft.com.cn> In-Reply-To: Subject: =?UTF-8?B?5Zue5aSNOiBbZWRrMi1kZXZlbF0gW1BBVENIIHYyIDIvMl0gQmFzZVRvb2xzOiB1cGRhdGUgcmVwb3J0IG1hcCBmaWxlIGZvcm1hdA==?= Date: Mon, 9 Nov 2020 14:38:38 +0800 Message-ID: <000001d6b662$f4eef6c0$decce440$@byosoft.com.cn> MIME-Version: 1.0 X-Mailer: Microsoft Outlook 16.0 Thread-Index: AQEswrjjJEBfHs6pNUEUQY+rCEqxJwJ+InjLAYoNF8Gq8vzGAA== Content-Type: text/plain; charset="gb2312" Content-Transfer-Encoding: quoted-printable Content-Language: zh-cn Hi Bob, This series patch for BZ: https://bugzilla.tianocore.org/show_bug.cgi?id=3D2977 Because of .map file changed, so we should change the regular expression pattern for the match Thanks, Yunhua -----=D3=CA=BC=FE=D4=AD=BC=FE----- =B7=A2=BC=FE=C8=CB: bounce+27952+67141+5049190+8953120@groups.io =B4=FA=B1=ED Bob Feng =B7=A2=CB=CD=CA=B1=BC=E4: 2020=C4=EA11=D4=C29=C8=D5 14:15 =CA=D5=BC=FE=C8=CB: Yunhua Feng ; devel@edk2.gr= oups.io =B3=AD=CB=CD: Liming Gao ; Chen, Christine =D6=F7=CC=E2: Re: [edk2-devel] [PATCH v2 2/2] BaseTools: update report map= file format Yuhuan, Would you please provide a complete commit message to this patch? Thanks, Bob -----Original Message----- From: Yunhua Feng =20 Sent: Friday, October 30, 2020 11:40 AM To: devel@edk2.groups.io Cc: Feng, Bob C ; Liming Gao ; Chen, Christine Subject: [PATCH v2 2/2] BaseTools: update report map file format update report map file format Cc: Bob Feng Cc: Liming Gao Cc: Yuwei Chen Signed-off-by: Yunhua Feng --- BaseTools/Source/Python/build/BuildReport.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BaseTools/Source/Python/build/BuildReport.py b/BaseTools/Source/Python/build/BuildReport.py index 8efa869162..330234e5af 100644 --- a/BaseTools/Source/Python/build/BuildReport.py +++ b/BaseTools/Source/Python/build/BuildReport.py @@ -60,7 +60,7 @@ gPcdGuidPattern =3D re.compile(r"PCD\((\w+)[.](\w+)\)") gOffsetGuidPattern =3D re.compile(r"(0x[0-9A-Fa-f]+) ([-A-Fa-f0-9]+)") =20 ## Pattern to find module base address and entry point in fixed flash map file -gModulePattern =3D r"\n[-\w]+\s*\(([^,]+),\s*BaseAddress=3D%(Address)s,\s*EntryPoint=3D%(Addr= ess)s\ )\s*\(GUID=3D([-0-9A-Fa-f]+)[^)]*\)" +gModulePattern =3D r"\n[-\w]+\s*\(([^,]+),\s*BaseAddress=3D%(Address)s,\s*EntryPoint=3D%(Addr= ess)s, \s*Type=3D\w+\)\s*\(GUID=3D([-0-9A-Fa-f]+)[^)]*\)" gMapFileItemPattern =3D re.compile(gModulePattern % {"Address" : "(-?0[xX][0-9A-Fa-f]+)"}) =20 ## Pattern to find all module referenced header files in source files -- 2.27.0.windows.1