From: "Yuwei Chen" <yuwei.chen@intel.com>
To: "Kinney, Michael D" <michael.d.kinney@intel.com>,
"devel@edk2.groups.io" <devel@edk2.groups.io>
Cc: "Feng, Bob C" <bob.c.feng@intel.com>,
Liming Gao <gaoliming@byosoft.com.cn>
Subject: Re: [Patch 1/1] BaseTools/PlatformAutoGen: MAKE_FLAGS and MAKE_PATH fixes
Date: Mon, 12 Apr 2021 01:48:40 +0000 [thread overview]
Message-ID: <DM5PR11MB159434AAA148865118798A8396709@DM5PR11MB1594.namprd11.prod.outlook.com> (raw)
In-Reply-To: <20210409214838.1501-1-michael.d.kinney@intel.com>
Reviewed-by: Yuwei Chen<yuwei.chen@intel.com>
> -----Original Message-----
> From: Kinney, Michael D <michael.d.kinney@intel.com>
> Sent: Saturday, April 10, 2021 5:49 AM
> To: devel@edk2.groups.io
> Cc: Feng, Bob C <bob.c.feng@intel.com>; Liming Gao
> <gaoliming@byosoft.com.cn>; Chen, Christine <yuwei.chen@intel.com>
> Subject: [Patch 1/1] BaseTools/PlatformAutoGen: MAKE_FLAGS and
> MAKE_PATH fixes
>
> REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3312
>
> Update parsing of MAKE_FLAGS in DSC [BuildOptions] sections to split the
> flags into a list to be compatible with running the make command using
> Popen(). Parsing MAKE_FLAGS from tools_def.txt already uses _SplitOption().
> This change uses the same _SplitOption() method for MAKE_FLAGS from a
> DSC [BuildOptions] section.
>
> Also update the parsing of MAKE_PATH to support MAKE_PATH from
> tools_def.txt or the DSC [BuildOptions] section. MAKE_PATH in DSC
> [BuildOptions] section is higher priority than MAKE_PATH in tools_def.txt.
>
> Cc: Bob Feng <bob.c.feng@intel.com>
> Cc: Liming Gao <gaoliming@byosoft.com.cn>
> Cc: Yuwei Chen <yuwei.chen@intel.com>
> Signed-off-by: Michael D Kinney <michael.d.kinney@intel.com>
> ---
> .../Source/Python/AutoGen/PlatformAutoGen.py | 36 +++++++++++--------
> 1 file changed, 21 insertions(+), 15 deletions(-)
>
> diff --git a/BaseTools/Source/Python/AutoGen/PlatformAutoGen.py
> b/BaseTools/Source/Python/AutoGen/PlatformAutoGen.py
> index 7d8e7b3c7cc1..c16f2e4cd8b7 100644
> --- a/BaseTools/Source/Python/AutoGen/PlatformAutoGen.py
> +++ b/BaseTools/Source/Python/AutoGen/PlatformAutoGen.py
> @@ -1,7 +1,7 @@
> ## @file
> # Create makefile for MS nmake and GNU make # -# Copyright (c) 2019, Intel
> Corporation. All rights reserved.<BR>
> +# Copyright (c) 2019 - 2021, Intel Corporation. All rights
> +reserved.<BR>
> # Copyright (c) 2020, ARM Limited. All rights reserved.<BR> # SPDX-License-
> Identifier: BSD-2-Clause-Patent # @@ -805,20 +805,26 @@ class
> PlatformAutoGen(AutoGen):
> #
> @cached_property
> def BuildCommand(self):
> - RetVal = []
> - if "MAKE" in self.ToolDefinition and "PATH" in
> self.ToolDefinition["MAKE"]:
> - RetVal += _SplitOption(self.ToolDefinition["MAKE"]["PATH"])
> - if "FLAGS" in self.ToolDefinition["MAKE"]:
> - NewOption = self.ToolDefinition["MAKE"]["FLAGS"].strip()
> - if NewOption != '':
> - RetVal += _SplitOption(NewOption)
> - if "MAKE" in self.EdkIIBuildOption:
> - if "FLAGS" in self.EdkIIBuildOption["MAKE"]:
> - Flags = self.EdkIIBuildOption["MAKE"]["FLAGS"]
> - if Flags.startswith('='):
> - RetVal = [RetVal[0]] + [Flags[1:]]
> - else:
> - RetVal.append(Flags)
> + if "MAKE" in self.EdkIIBuildOption and "PATH" in
> self.EdkIIBuildOption["MAKE"]:
> + # MAKE_PATH in DSC [BuildOptions] section is higher priority
> + Path = self.EdkIIBuildOption["MAKE"]["PATH"]
> + if Path.startswith('='):
> + Path = Path[1:].strip()
> + RetVal = _SplitOption(Path)
> + elif "MAKE" in self.ToolDefinition and "PATH" in
> self.ToolDefinition["MAKE"]:
> + RetVal = _SplitOption(self.ToolDefinition["MAKE"]["PATH"])
> + else:
> + return []
> + if "MAKE" in self.ToolDefinition and "FLAGS" in
> self.ToolDefinition["MAKE"]:
> + NewOption = self.ToolDefinition["MAKE"]["FLAGS"].strip()
> + if NewOption != '':
> + RetVal += _SplitOption(NewOption)
> + if "MAKE" in self.EdkIIBuildOption and "FLAGS" in
> self.EdkIIBuildOption["MAKE"]:
> + Flags = self.EdkIIBuildOption["MAKE"]["FLAGS"]
> + if Flags.startswith('='):
> + RetVal = [RetVal[0]] + _SplitOption(Flags[1:].strip())
> + else:
> + RetVal = RetVal + _SplitOption(Flags.strip())
> return RetVal
>
> ## Get tool chain definition
> --
> 2.31.1.windows.1
next prev parent reply other threads:[~2021-04-12 1:48 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-04-09 21:48 [Patch 1/1] BaseTools/PlatformAutoGen: MAKE_FLAGS and MAKE_PATH fixes Michael D Kinney
2021-04-12 1:48 ` Yuwei Chen [this message]
2021-04-13 1:31 ` 回复: [edk2-devel] " gaoliming
2021-04-13 2:40 ` Michael D Kinney
2021-04-13 7:36 ` 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=DM5PR11MB159434AAA148865118798A8396709@DM5PR11MB1594.namprd11.prod.outlook.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