* [PATCH V5] BaseTools:GuidedSectionTools.txt is not generated correctly
@ 2020-03-26 7:56 Fan, ZhijuX
2020-03-26 9:12 ` [edk2-devel] " Bob Feng
0 siblings, 1 reply; 2+ messages in thread
From: Fan, ZhijuX @ 2020-03-26 7:56 UTC (permalink / raw)
To: devel; +Cc: Zhiju . Fan, Liming Gao, Bob Feng
REF:https://bugzilla.tianocore.org/show_bug.cgi?id=2538
For LzmaCompress or BrotliCompress, the platform may use the different
options and add their batch file, such as LzmaCompressPlatform.
Then, specify it in platform.dsc [BuildOptions] to override the default
one in tools_def.txt.
*_*_*_LZMA_PATH = LzmaCompressPlatform
This override tool will be used. But, its name is not specified in the
generated GuidedSectionTools.txt.
Signed-off-by: Zhiju.Fan <zhijux.fan@intel.com>
Cc: Liming Gao <liming.gao@intel.com>
Cc: Bob Feng <bob.c.feng@intel.com>
---
A judgment condition was removed
if self.Workspace.ToolDef.ToolsDefTxtDictionary.get(Def):
BaseTools/Source/Python/AutoGen/PlatformAutoGen.py | 3 ++-
BaseTools/Source/Python/build/build.py | 13 +++----------
2 files changed, 5 insertions(+), 11 deletions(-)
diff --git a/BaseTools/Source/Python/AutoGen/PlatformAutoGen.py b/BaseTools/Source/Python/AutoGen/PlatformAutoGen.py
index d32178b00c93..af66c48c7d6a 100644
--- a/BaseTools/Source/Python/AutoGen/PlatformAutoGen.py
+++ b/BaseTools/Source/Python/AutoGen/PlatformAutoGen.py
@@ -866,7 +866,8 @@ class PlatformAutoGen(AutoGen):
Value += " " + self._BuildOptionWithToolDef(RetVal)[Tool][Attr]
else:
Value = self._BuildOptionWithToolDef(RetVal)[Tool][Attr]
-
+ Def = '_'.join([self.BuildTarget, self.ToolChain, self.Arch, Tool, Attr])
+ self.Workspace.ToolDef.ToolsDefTxtDictionary[Def] = Value
if Attr == "PATH":
# Don't put MAKE definition in the file
if Tool != "MAKE":
diff --git a/BaseTools/Source/Python/build/build.py b/BaseTools/Source/Python/build/build.py
index d841fefdc502..6dbe05f0a93e 100755
--- a/BaseTools/Source/Python/build/build.py
+++ b/BaseTools/Source/Python/build/build.py
@@ -2363,16 +2363,9 @@ class Build():
if os.path.exists(tool):
return os.path.realpath(tool)
else:
- # We need to search for the tool using the
- # PATH environment variable.
- for dirInPath in os.environ['PATH'].split(os.pathsep):
- foundPath = os.path.join(dirInPath, tool)
- if os.path.exists(foundPath):
- return os.path.realpath(foundPath)
-
- # If the tool was not found in the path then we just return
- # the input tool.
- return tool
+ # If the tool was not found in the path then we just return
+ # the input tool.
+ return tool
## Launch the module or platform build
#
--
2.14.1.windows.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [edk2-devel] [PATCH V5] BaseTools:GuidedSectionTools.txt is not generated correctly
2020-03-26 7:56 [PATCH V5] BaseTools:GuidedSectionTools.txt is not generated correctly Fan, ZhijuX
@ 2020-03-26 9:12 ` Bob Feng
0 siblings, 0 replies; 2+ messages in thread
From: Bob Feng @ 2020-03-26 9:12 UTC (permalink / raw)
To: Fan, ZhijuX, devel
[-- Attachment #1: Type: text/plain, Size: 2783 bytes --]
Zhiju,
I have 2 comments on the code style. Inline.
On Thu, Mar 26, 2020 at 03:57 PM, Fan, ZhijuX wrote:
>
> REF: https://bugzilla.tianocore.org/show_bug.cgi?id=2538
>
> For LzmaCompress or BrotliCompress, the platform may use the different
> options and add their batch file, such as LzmaCompressPlatform.
> Then, specify it in platform.dsc [BuildOptions] to override the default
> one in tools_def.txt.
>
> *_*_*_LZMA_PATH = LzmaCompressPlatform
>
> This override tool will be used. But, its name is not specified in the
> generated GuidedSectionTools.txt.
>
> Signed-off-by: Zhiju.Fan <zhijux.fan@intel.com>
> Cc: Liming Gao <liming.gao@intel.com>
> Cc: Bob Feng <bob.c.feng@intel.com>
> ---
>
> A judgment condition was removed
> if self.Workspace.ToolDef.ToolsDefTxtDictionary.get(Def):
>
> BaseTools/Source/Python/AutoGen/PlatformAutoGen.py | 3 ++-
> BaseTools/Source/Python/build/build.py | 13 +++----------
> 2 files changed, 5 insertions(+), 11 deletions(-)
>
> diff --git a/BaseTools/Source/Python/AutoGen/PlatformAutoGen.py
> b/BaseTools/Source/Python/AutoGen/PlatformAutoGen.py
> index d32178b00c93..af66c48c7d6a 100644
> --- a/BaseTools/Source/Python/AutoGen/PlatformAutoGen.py
> +++ b/BaseTools/Source/Python/AutoGen/PlatformAutoGen.py
> @@ -866,7 +866,8 @@ class PlatformAutoGen(AutoGen):
> Value += " " + self._BuildOptionWithToolDef(RetVal)[Tool][Attr]
> else:
> Value = self._BuildOptionWithToolDef(RetVal)[Tool][Attr]
> -
> + Def = '_'.join([self.BuildTarget, self.ToolChain, self.Arch, Tool,
> Attr])
> + self.Workspace.ToolDef.ToolsDefTxtDictionary[Def] = Value
> if Attr == "PATH":
> # Don't put MAKE definition in the file
> if Tool != "MAKE":
> diff --git a/BaseTools/Source/Python/build/build.py
> b/BaseTools/Source/Python/build/build.py
> index d841fefdc502..6dbe05f0a93e 100755
> --- a/BaseTools/Source/Python/build/build.py
> +++ b/BaseTools/Source/Python/build/build.py
> @@ -2363,16 +2363,9 @@ class Build():
> if os.path.exists(tool):
> return os.path.realpath(tool)
> else:
Remove this else block would make the code more clear.
>
> - # We need to search for the tool using the
> - # PATH environment variable.
> - for dirInPath in os.environ['PATH'].split(os.pathsep):
> - foundPath = os.path.join(dirInPath, tool)
> - if os.path.exists(foundPath):
> - return os.path.realpath(foundPath)
> -
> - # If the tool was not found in the path then we just return
> - # the input tool.
> - return tool
> + # If the tool was not found in the path then we just return
> + # the input tool.
These 2 line comments are not necessary, since this function logical is simple.
>
> + return tool
>
> ## Launch the module or platform build
> #
> --
> 2.14.1.windows.1
[-- Attachment #2: Type: text/html, Size: 3098 bytes --]
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2020-03-26 9:12 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-03-26 7:56 [PATCH V5] BaseTools:GuidedSectionTools.txt is not generated correctly Fan, ZhijuX
2020-03-26 9:12 ` [edk2-devel] " Bob Feng
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox