public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
* [Patch] BaseTools: Fix the bug for QuarkPlatformPkg build failure
@ 2017-12-29  0:28 Yonghong Zhu
  2017-12-29  2:21 ` Gao, Liming
  0 siblings, 1 reply; 2+ messages in thread
From: Yonghong Zhu @ 2017-12-29  0:28 UTC (permalink / raw)
  To: edk2-devel; +Cc: Liming Gao

The issue is that the string 'LPC' starts with the 'L' character and
this is being confused with L" or L' for a Unicode string or Unicode
character.

Fixes:https://bugzilla.tianocore.org/show_bug.cgi?id=831
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/Common/Expression.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/BaseTools/Source/Python/Common/Expression.py b/BaseTools/Source/Python/Common/Expression.py
index 953a412..55fa06d 100644
--- a/BaseTools/Source/Python/Common/Expression.py
+++ b/BaseTools/Source/Python/Common/Expression.py
@@ -162,11 +162,11 @@ class ValueExpression(object):
                 if Oprand1[0] in ['"', "'"] or Oprand1.startswith('L"') or Oprand1.startswith("L'")or Oprand1.startswith('UINT'):
                     Oprand1, Size = ParseFieldValue(Oprand1)
                 else:
                     Oprand1,Size = ParseFieldValue('"' + Oprand1 + '"')
             if type(Oprand2) == type(''):
-                if Oprand2[0] in ['"', "'", 'L'] or Oprand2.startswith('UINT'):
+                if Oprand2[0] in ['"', "'"] or Oprand2.startswith('L"') or Oprand2.startswith("L'") or Oprand2.startswith('UINT'):
                     Oprand2, Size = ParseFieldValue(Oprand2)
                 else:
                     Oprand2, Size = ParseFieldValue('"' + Oprand2 + '"')
             if type(Oprand1) == type('') or type(Oprand2) == type(''):
                 raise BadExpression(ERR_STRING_EXPR % Operator)
-- 
2.6.1.windows.1



^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [Patch] BaseTools: Fix the bug for QuarkPlatformPkg build failure
  2017-12-29  0:28 [Patch] BaseTools: Fix the bug for QuarkPlatformPkg build failure Yonghong Zhu
@ 2017-12-29  2:21 ` Gao, Liming
  0 siblings, 0 replies; 2+ messages in thread
From: Gao, Liming @ 2017-12-29  2:21 UTC (permalink / raw)
  To: Zhu, Yonghong, edk2-devel@lists.01.org

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

>-----Original Message-----
>From: Zhu, Yonghong
>Sent: Friday, December 29, 2017 8:28 AM
>To: edk2-devel@lists.01.org
>Cc: Gao, Liming <liming.gao@intel.com>
>Subject: [Patch] BaseTools: Fix the bug for QuarkPlatformPkg build failure
>
>The issue is that the string 'LPC' starts with the 'L' character and
>this is being confused with L" or L' for a Unicode string or Unicode
>character.
>
>Fixes:https://bugzilla.tianocore.org/show_bug.cgi?id=831
>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/Common/Expression.py | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
>diff --git a/BaseTools/Source/Python/Common/Expression.py
>b/BaseTools/Source/Python/Common/Expression.py
>index 953a412..55fa06d 100644
>--- a/BaseTools/Source/Python/Common/Expression.py
>+++ b/BaseTools/Source/Python/Common/Expression.py
>@@ -162,11 +162,11 @@ class ValueExpression(object):
>                 if Oprand1[0] in ['"', "'"] or Oprand1.startswith('L"') or
>Oprand1.startswith("L'")or Oprand1.startswith('UINT'):
>                     Oprand1, Size = ParseFieldValue(Oprand1)
>                 else:
>                     Oprand1,Size = ParseFieldValue('"' + Oprand1 + '"')
>             if type(Oprand2) == type(''):
>-                if Oprand2[0] in ['"', "'", 'L'] or Oprand2.startswith('UINT'):
>+                if Oprand2[0] in ['"', "'"] or Oprand2.startswith('L"') or
>Oprand2.startswith("L'") or Oprand2.startswith('UINT'):
>                     Oprand2, Size = ParseFieldValue(Oprand2)
>                 else:
>                     Oprand2, Size = ParseFieldValue('"' + Oprand2 + '"')
>             if type(Oprand1) == type('') or type(Oprand2) == type(''):
>                 raise BadExpression(ERR_STRING_EXPR % Operator)
>--
>2.6.1.windows.1



^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2017-12-29  2:16 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-12-29  0:28 [Patch] BaseTools: Fix the bug for QuarkPlatformPkg build failure Yonghong Zhu
2017-12-29  2:21 ` Gao, Liming

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox