* [PATCH v1 1/1] BaseTools: Update the NASM dependency @ 2021-02-12 20:49 Bret Barkelew 2021-02-15 20:59 ` [edk2-devel] " Laszlo Ersek 0 siblings, 1 reply; 8+ messages in thread From: Bret Barkelew @ 2021-02-12 20:49 UTC (permalink / raw) To: devel This is primarily used by CI builds, but may also be used by platforms. Update NASM to support newer structures and features, as agreed in recent community meetings: https://edk2.groups.io/g/devel/message/71289 --- BaseTools/Bin/nasm_ext_dep.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BaseTools/Bin/nasm_ext_dep.yaml b/BaseTools/Bin/nasm_ext_dep.yaml index 60b1f71b56aa..56703d4c18e7 100644 --- a/BaseTools/Bin/nasm_ext_dep.yaml +++ b/BaseTools/Bin/nasm_ext_dep.yaml @@ -13,6 +13,6 @@ "type": "nuget", "name": "mu_nasm", "source": "https://api.nuget.org/v3/index.json", - "version": "2.14.02", + "version": "2.15.5", "flags": ["set_path", "host_specific"] } -- 2.28.0.windows.1 ^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [edk2-devel] [PATCH v1 1/1] BaseTools: Update the NASM dependency 2021-02-12 20:49 [PATCH v1 1/1] BaseTools: Update the NASM dependency Bret Barkelew @ 2021-02-15 20:59 ` Laszlo Ersek 2021-02-18 3:39 ` 回复: " gaoliming 0 siblings, 1 reply; 8+ messages in thread From: Laszlo Ersek @ 2021-02-15 20:59 UTC (permalink / raw) To: devel, bret Hi Bret, On 02/12/21 21:49, Bret Barkelew wrote: > This is primarily used by CI builds, but may also be used by platforms. > > Update NASM to support newer structures and features, as agreed in recent > community meetings: > https://edk2.groups.io/g/devel/message/71289 > --- > BaseTools/Bin/nasm_ext_dep.yaml | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/BaseTools/Bin/nasm_ext_dep.yaml b/BaseTools/Bin/nasm_ext_dep.yaml > index 60b1f71b56aa..56703d4c18e7 100644 > --- a/BaseTools/Bin/nasm_ext_dep.yaml > +++ b/BaseTools/Bin/nasm_ext_dep.yaml > @@ -13,6 +13,6 @@ > "type": "nuget", > "name": "mu_nasm", > "source": "https://api.nuget.org/v3/index.json", > - "version": "2.14.02", > + "version": "2.15.5", > "flags": ["set_path", "host_specific"] > } > (1) I'm confused by the "patchlevel" number being "5" and not "05", in the "2.15.5" version. Per <https://edk2.groups.io/g/devel/message/71045>, my understanding has been that the latest release is "2.15.05". (2) The minimum required version, according to <https://edk2.groups.io/g/devel/message/71070>, is "2.15.01". In the RHEL build environments that matter to me, I can satisfy a NASM dependency up to 2.15.03, at this time, but not beyond. And this matters because... (3) ... arguably, the NASM requirement in "BaseTools/Conf/tools_def.template" should be updated too, in the same patch: # - NASM 2.10 or later for use with the GCC toolchain family # - NASM 2.12.01 or later for use with all other toolchain families Thanks Laszlo ^ permalink raw reply [flat|nested] 8+ messages in thread
* 回复: [edk2-devel] [PATCH v1 1/1] BaseTools: Update the NASM dependency 2021-02-15 20:59 ` [edk2-devel] " Laszlo Ersek @ 2021-02-18 3:39 ` gaoliming 2021-02-18 4:07 ` Bret Barkelew 0 siblings, 1 reply; 8+ messages in thread From: gaoliming @ 2021-02-18 3:39 UTC (permalink / raw) To: devel, lersek, bret Laszlo: > -----邮件原件----- > 发件人: bounce+27952+71686+4905953+8761045@groups.io > <bounce+27952+71686+4905953+8761045@groups.io> 代表 Laszlo Ersek > 发送时间: 2021年2月16日 5:00 > 收件人: devel@edk2.groups.io; bret@corthon.com > 主题: Re: [edk2-devel] [PATCH v1 1/1] BaseTools: Update the NASM > dependency > > Hi Bret, > > On 02/12/21 21:49, Bret Barkelew wrote: > > This is primarily used by CI builds, but may also be used by platforms. > > > > Update NASM to support newer structures and features, as agreed in recent > > community meetings: > > https://edk2.groups.io/g/devel/message/71289 > > --- > > BaseTools/Bin/nasm_ext_dep.yaml | 2 +- > > 1 file changed, 1 insertion(+), 1 deletion(-) > > > > diff --git a/BaseTools/Bin/nasm_ext_dep.yaml > b/BaseTools/Bin/nasm_ext_dep.yaml > > index 60b1f71b56aa..56703d4c18e7 100644 > > --- a/BaseTools/Bin/nasm_ext_dep.yaml > > +++ b/BaseTools/Bin/nasm_ext_dep.yaml > > @@ -13,6 +13,6 @@ > > "type": "nuget", > > "name": "mu_nasm", > > "source": "https://api.nuget.org/v3/index.json", > > - "version": "2.14.02", > > + "version": "2.15.5", > > "flags": ["set_path", "host_specific"] > > } > > > > (1) I'm confused by the "patchlevel" number being "5" and not "05", in > the "2.15.5" version. Per > <https://edk2.groups.io/g/devel/message/71045>, my understanding has > been that the latest release is "2.15.05". > > (2) The minimum required version, according to > <https://edk2.groups.io/g/devel/message/71070>, is "2.15.01". In the > RHEL build environments that matter to me, I can satisfy a NASM > dependency up to 2.15.03, at this time, but not beyond. And this matters > because... > I understand CI environment tries to use the latest tool version for verification. > (3) ... arguably, the NASM requirement in > "BaseTools/Conf/tools_def.template" should be updated too, in the same > patch: > > # - NASM 2.10 or later for use with the GCC toolchain family > # - NASM 2.12.01 or later for use with all other toolchain families > This is edk2 build environment requirement. It will be updated when the source code change is added. Thanks Liming > Thanks > Laszlo > > > > > ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [edk2-devel] [PATCH v1 1/1] BaseTools: Update the NASM dependency 2021-02-18 3:39 ` 回复: " gaoliming @ 2021-02-18 4:07 ` Bret Barkelew 2021-02-19 14:30 ` Laszlo Ersek 0 siblings, 1 reply; 8+ messages in thread From: Bret Barkelew @ 2021-02-18 4:07 UTC (permalink / raw) To: gaoliming; +Cc: devel, Laszlo Ersek [-- Attachment #1: Type: text/plain, Size: 2613 bytes --] I'm not opposed to moving to 2.15.03 for consistency, but we'll have to publish a new package. This one is already pushed to Nuget. On Wed, Feb 17, 2021 at 7:39 PM gaoliming <gaoliming@byosoft.com.cn> wrote: > Laszlo: > > > -----邮件原件----- > > 发件人: bounce+27952+71686+4905953+8761045@groups.io > > <bounce+27952+71686+4905953+8761045@groups.io> 代表 Laszlo Ersek > > 发送时间: 2021年2月16日 5:00 > > 收件人: devel@edk2.groups.io; bret@corthon.com > > 主题: Re: [edk2-devel] [PATCH v1 1/1] BaseTools: Update the NASM > > dependency > > > > Hi Bret, > > > > On 02/12/21 21:49, Bret Barkelew wrote: > > > This is primarily used by CI builds, but may also be used by platforms. > > > > > > Update NASM to support newer structures and features, as agreed in > recent > > > community meetings: > > > https://edk2.groups.io/g/devel/message/71289 > > > --- > > > BaseTools/Bin/nasm_ext_dep.yaml | 2 +- > > > 1 file changed, 1 insertion(+), 1 deletion(-) > > > > > > diff --git a/BaseTools/Bin/nasm_ext_dep.yaml > > b/BaseTools/Bin/nasm_ext_dep.yaml > > > index 60b1f71b56aa..56703d4c18e7 100644 > > > --- a/BaseTools/Bin/nasm_ext_dep.yaml > > > +++ b/BaseTools/Bin/nasm_ext_dep.yaml > > > @@ -13,6 +13,6 @@ > > > "type": "nuget", > > > "name": "mu_nasm", > > > "source": "https://api.nuget.org/v3/index.json", > > > - "version": "2.14.02", > > > + "version": "2.15.5", > > > "flags": ["set_path", "host_specific"] > > > } > > > > > > > (1) I'm confused by the "patchlevel" number being "5" and not "05", in > > the "2.15.5" version. Per > > <https://edk2.groups.io/g/devel/message/71045>, my understanding has > > been that the latest release is "2.15.05". > > > > (2) The minimum required version, according to > > <https://edk2.groups.io/g/devel/message/71070>, is "2.15.01". In the > > RHEL build environments that matter to me, I can satisfy a NASM > > dependency up to 2.15.03, at this time, but not beyond. And this matters > > because... > > > I understand CI environment tries to use the latest tool version for > verification. > > > (3) ... arguably, the NASM requirement in > > "BaseTools/Conf/tools_def.template" should be updated too, in the same > > patch: > > > > # - NASM 2.10 or later for use with the GCC toolchain family > > # - NASM 2.12.01 or later for use with all other toolchain families > > > This is edk2 build environment requirement. It will be updated when the > source code change is added. > > Thanks > Liming > > Thanks > > Laszlo > > > > > > > > > > > > > > [-- Attachment #2: Type: text/html, Size: 4206 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [edk2-devel] [PATCH v1 1/1] BaseTools: Update the NASM dependency 2021-02-18 4:07 ` Bret Barkelew @ 2021-02-19 14:30 ` Laszlo Ersek 2021-02-19 17:10 ` Bret Barkelew 0 siblings, 1 reply; 8+ messages in thread From: Laszlo Ersek @ 2021-02-19 14:30 UTC (permalink / raw) To: Bret Barkelew, gaoliming; +Cc: devel On 02/18/21 05:07, Bret Barkelew wrote: > I'm not opposed to moving to 2.15.03 for consistency, but we'll have to > publish a new package. This one is already pushed to Nuget. Thanks for the answers. From Liming's answer, I understand we don't try to keep CI strictly in sync with edk2's (internal) BaseTools. So the patch should be fine; however, I think the subject line could be clarified. "BaseTools: Update the NASM dependency" doesn't make it clear that the CI builds are targeted primarily. Thanks Laszlo > > On Wed, Feb 17, 2021 at 7:39 PM gaoliming <gaoliming@byosoft.com.cn> wrote: > >> Laszlo: >> >>> -----邮件原件----- >>> 发件人: bounce+27952+71686+4905953+8761045@groups.io >>> <bounce+27952+71686+4905953+8761045@groups.io> 代表 Laszlo Ersek >>> 发送时间: 2021年2月16日 5:00 >>> 收件人: devel@edk2.groups.io; bret@corthon.com >>> 主题: Re: [edk2-devel] [PATCH v1 1/1] BaseTools: Update the NASM >>> dependency >>> >>> Hi Bret, >>> >>> On 02/12/21 21:49, Bret Barkelew wrote: >>>> This is primarily used by CI builds, but may also be used by platforms. >>>> >>>> Update NASM to support newer structures and features, as agreed in >> recent >>>> community meetings: >>>> https://edk2.groups.io/g/devel/message/71289 >>>> --- >>>> BaseTools/Bin/nasm_ext_dep.yaml | 2 +- >>>> 1 file changed, 1 insertion(+), 1 deletion(-) >>>> >>>> diff --git a/BaseTools/Bin/nasm_ext_dep.yaml >>> b/BaseTools/Bin/nasm_ext_dep.yaml >>>> index 60b1f71b56aa..56703d4c18e7 100644 >>>> --- a/BaseTools/Bin/nasm_ext_dep.yaml >>>> +++ b/BaseTools/Bin/nasm_ext_dep.yaml >>>> @@ -13,6 +13,6 @@ >>>> "type": "nuget", >>>> "name": "mu_nasm", >>>> "source": "https://api.nuget.org/v3/index.json", >>>> - "version": "2.14.02", >>>> + "version": "2.15.5", >>>> "flags": ["set_path", "host_specific"] >>>> } >>>> >>> >>> (1) I'm confused by the "patchlevel" number being "5" and not "05", in >>> the "2.15.5" version. Per >>> <https://edk2.groups.io/g/devel/message/71045>, my understanding has >>> been that the latest release is "2.15.05". >>> >>> (2) The minimum required version, according to >>> <https://edk2.groups.io/g/devel/message/71070>, is "2.15.01". In the >>> RHEL build environments that matter to me, I can satisfy a NASM >>> dependency up to 2.15.03, at this time, but not beyond. And this matters >>> because... >>> >> I understand CI environment tries to use the latest tool version for >> verification. >> >>> (3) ... arguably, the NASM requirement in >>> "BaseTools/Conf/tools_def.template" should be updated too, in the same >>> patch: >>> >>> # - NASM 2.10 or later for use with the GCC toolchain family >>> # - NASM 2.12.01 or later for use with all other toolchain families >>> >> This is edk2 build environment requirement. It will be updated when the >> source code change is added. >> >> Thanks >> Liming >>> Thanks >>> Laszlo >>> >>> >>> >>> >>> >> >> >> >> > ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [edk2-devel] [PATCH v1 1/1] BaseTools: Update the NASM dependency 2021-02-19 14:30 ` Laszlo Ersek @ 2021-02-19 17:10 ` Bret Barkelew 2021-02-20 5:16 ` 回复: " gaoliming 0 siblings, 1 reply; 8+ messages in thread From: Bret Barkelew @ 2021-02-19 17:10 UTC (permalink / raw) To: Laszlo Ersek; +Cc: gaoliming, devel [-- Attachment #1: Type: text/plain, Size: 3388 bytes --] Good note. Is there an easy way to resubmit? Just edit the patch as is, or does there need to be a v2? On Fri, Feb 19, 2021 at 6:30 AM Laszlo Ersek <lersek@redhat.com> wrote: > On 02/18/21 05:07, Bret Barkelew wrote: > > I'm not opposed to moving to 2.15.03 for consistency, but we'll have to > > publish a new package. This one is already pushed to Nuget. > > Thanks for the answers. From Liming's answer, I understand we don't try > to keep CI strictly in sync with edk2's (internal) BaseTools. > > So the patch should be fine; however, I think the subject line could be > clarified. "BaseTools: Update the NASM dependency" doesn't make it clear > that the CI builds are targeted primarily. > > Thanks > Laszlo > > > > > On Wed, Feb 17, 2021 at 7:39 PM gaoliming <gaoliming@byosoft.com.cn> > wrote: > > > >> Laszlo: > >> > >>> -----邮件原件----- > >>> 发件人: bounce+27952+71686+4905953+8761045@groups.io > >>> <bounce+27952+71686+4905953+8761045@groups.io> 代表 Laszlo Ersek > >>> 发送时间: 2021年2月16日 5:00 > >>> 收件人: devel@edk2.groups.io; bret@corthon.com > >>> 主题: Re: [edk2-devel] [PATCH v1 1/1] BaseTools: Update the NASM > >>> dependency > >>> > >>> Hi Bret, > >>> > >>> On 02/12/21 21:49, Bret Barkelew wrote: > >>>> This is primarily used by CI builds, but may also be used by > platforms. > >>>> > >>>> Update NASM to support newer structures and features, as agreed in > >> recent > >>>> community meetings: > >>>> https://edk2.groups.io/g/devel/message/71289 > >>>> --- > >>>> BaseTools/Bin/nasm_ext_dep.yaml | 2 +- > >>>> 1 file changed, 1 insertion(+), 1 deletion(-) > >>>> > >>>> diff --git a/BaseTools/Bin/nasm_ext_dep.yaml > >>> b/BaseTools/Bin/nasm_ext_dep.yaml > >>>> index 60b1f71b56aa..56703d4c18e7 100644 > >>>> --- a/BaseTools/Bin/nasm_ext_dep.yaml > >>>> +++ b/BaseTools/Bin/nasm_ext_dep.yaml > >>>> @@ -13,6 +13,6 @@ > >>>> "type": "nuget", > >>>> "name": "mu_nasm", > >>>> "source": "https://api.nuget.org/v3/index.json", > >>>> - "version": "2.14.02", > >>>> + "version": "2.15.5", > >>>> "flags": ["set_path", "host_specific"] > >>>> } > >>>> > >>> > >>> (1) I'm confused by the "patchlevel" number being "5" and not "05", in > >>> the "2.15.5" version. Per > >>> <https://edk2.groups.io/g/devel/message/71045>, my understanding has > >>> been that the latest release is "2.15.05". > >>> > >>> (2) The minimum required version, according to > >>> <https://edk2.groups.io/g/devel/message/71070>, is "2.15.01". In the > >>> RHEL build environments that matter to me, I can satisfy a NASM > >>> dependency up to 2.15.03, at this time, but not beyond. And this > matters > >>> because... > >>> > >> I understand CI environment tries to use the latest tool version for > >> verification. > >> > >>> (3) ... arguably, the NASM requirement in > >>> "BaseTools/Conf/tools_def.template" should be updated too, in the same > >>> patch: > >>> > >>> # - NASM 2.10 or later for use with the GCC toolchain family > >>> # - NASM 2.12.01 or later for use with all other toolchain families > >>> > >> This is edk2 build environment requirement. It will be updated when the > >> source code change is added. > >> > >> Thanks > >> Liming > >>> Thanks > >>> Laszlo > >>> > >>> > >>> > >>> > >>> > >> > >> > >> > >> > > > > [-- Attachment #2: Type: text/html, Size: 5550 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* 回复: [edk2-devel] [PATCH v1 1/1] BaseTools: Update the NASM dependency 2021-02-19 17:10 ` Bret Barkelew @ 2021-02-20 5:16 ` gaoliming 2021-02-22 10:19 ` Laszlo Ersek 0 siblings, 1 reply; 8+ messages in thread From: gaoliming @ 2021-02-20 5:16 UTC (permalink / raw) To: devel, bret, 'Laszlo Ersek' [-- Attachment #1: Type: text/plain, Size: 3869 bytes --] I suggest to send patch v2. Thanks Liming 发件人: bounce+27952+71849+4905953+8761045@groups.io <bounce+27952+71849+4905953+8761045@groups.io> 代表 Bret Barkelew 发送时间: 2021年2月20日 1:10 收件人: Laszlo Ersek <lersek@redhat.com> 抄送: gaoliming <gaoliming@byosoft.com.cn>; devel@edk2.groups.io 主题: Re: [edk2-devel] [PATCH v1 1/1] BaseTools: Update the NASM dependency Good note. Is there an easy way to resubmit? Just edit the patch as is, or does there need to be a v2? On Fri, Feb 19, 2021 at 6:30 AM Laszlo Ersek <lersek@redhat.com <mailto:lersek@redhat.com> > wrote: On 02/18/21 05:07, Bret Barkelew wrote: > I'm not opposed to moving to 2.15.03 for consistency, but we'll have to > publish a new package. This one is already pushed to Nuget. Thanks for the answers. From Liming's answer, I understand we don't try to keep CI strictly in sync with edk2's (internal) BaseTools. So the patch should be fine; however, I think the subject line could be clarified. "BaseTools: Update the NASM dependency" doesn't make it clear that the CI builds are targeted primarily. Thanks Laszlo > > On Wed, Feb 17, 2021 at 7:39 PM gaoliming <gaoliming@byosoft.com.cn <mailto:gaoliming@byosoft.com.cn> > wrote: > >> Laszlo: >> >>> -----邮件原件----- >>> 发件人: bounce+27952+71686+4905953+8761045@groups.io <mailto:bounce%2B27952%2B71686%2B4905953%2B8761045@groups.io> >>> <bounce+27952+71686+4905953+8761045@groups.io <mailto:bounce%2B27952%2B71686%2B4905953%2B8761045@groups.io> > 代表 Laszlo Ersek >>> 发送时间: 2021年2月16日 5:00 >>> 收件人: devel@edk2.groups.io <mailto:devel@edk2.groups.io> ; bret@corthon.com <mailto:bret@corthon.com> >>> 主题: Re: [edk2-devel] [PATCH v1 1/1] BaseTools: Update the NASM >>> dependency >>> >>> Hi Bret, >>> >>> On 02/12/21 21:49, Bret Barkelew wrote: >>>> This is primarily used by CI builds, but may also be used by platforms. >>>> >>>> Update NASM to support newer structures and features, as agreed in >> recent >>>> community meetings: >>>> https://edk2.groups.io/g/devel/message/71289 >>>> --- >>>> BaseTools/Bin/nasm_ext_dep.yaml | 2 +- >>>> 1 file changed, 1 insertion(+), 1 deletion(-) >>>> >>>> diff --git a/BaseTools/Bin/nasm_ext_dep.yaml >>> b/BaseTools/Bin/nasm_ext_dep.yaml >>>> index 60b1f71b56aa..56703d4c18e7 100644 >>>> --- a/BaseTools/Bin/nasm_ext_dep.yaml >>>> +++ b/BaseTools/Bin/nasm_ext_dep.yaml >>>> @@ -13,6 +13,6 @@ >>>> "type": "nuget", >>>> "name": "mu_nasm", >>>> "source": "https://api.nuget.org/v3/index.json", >>>> - "version": "2.14.02", >>>> + "version": "2.15.5", >>>> "flags": ["set_path", "host_specific"] >>>> } >>>> >>> >>> (1) I'm confused by the "patchlevel" number being "5" and not "05", in >>> the "2.15.5" version. Per >>> <https://edk2.groups.io/g/devel/message/71045>, my understanding has >>> been that the latest release is "2.15.05". >>> >>> (2) The minimum required version, according to >>> <https://edk2.groups.io/g/devel/message/71070>, is "2.15.01". In the >>> RHEL build environments that matter to me, I can satisfy a NASM >>> dependency up to 2.15.03, at this time, but not beyond. And this matters >>> because... >>> >> I understand CI environment tries to use the latest tool version for >> verification. >> >>> (3) ... arguably, the NASM requirement in >>> "BaseTools/Conf/tools_def.template" should be updated too, in the same >>> patch: >>> >>> # - NASM 2.10 or later for use with the GCC toolchain family >>> # - NASM 2.12.01 or later for use with all other toolchain families >>> >> This is edk2 build environment requirement. It will be updated when the >> source code change is added. >> >> Thanks >> Liming >>> Thanks >>> Laszlo >>> >>> >>> >>> >>> >> >> >> >> > [-- Attachment #2: Type: text/html, Size: 9469 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: 回复: [edk2-devel] [PATCH v1 1/1] BaseTools: Update the NASM dependency 2021-02-20 5:16 ` 回复: " gaoliming @ 2021-02-22 10:19 ` Laszlo Ersek 0 siblings, 0 replies; 8+ messages in thread From: Laszlo Ersek @ 2021-02-22 10:19 UTC (permalink / raw) To: gaoliming, devel, bret On 02/20/21 06:16, gaoliming wrote: > I suggest to send patch v2. > > > > Thanks > > Liming > > 发件人: bounce+27952+71849+4905953+8761045@groups.io <bounce+27952+71849+4905953+8761045@groups.io> 代表 Bret Barkelew > 发送时间: 2021年2月20日 1:10 > 收件人: Laszlo Ersek <lersek@redhat.com> > 抄送: gaoliming <gaoliming@byosoft.com.cn>; devel@edk2.groups.io > 主题: Re: [edk2-devel] [PATCH v1 1/1] BaseTools: Update the NASM dependency > > > > Good note. Is there an easy way to resubmit? Just edit the patch as is, or does there need to be a v2? If the change is trivial, then the package maintainer may volunteer to fix up the patch for you upon merge; the default is to post v2. Thanks! Laszlo > On Fri, Feb 19, 2021 at 6:30 AM Laszlo Ersek <lersek@redhat.com <mailto:lersek@redhat.com> > wrote: > > On 02/18/21 05:07, Bret Barkelew wrote: >> I'm not opposed to moving to 2.15.03 for consistency, but we'll have to >> publish a new package. This one is already pushed to Nuget. > > Thanks for the answers. From Liming's answer, I understand we don't try > to keep CI strictly in sync with edk2's (internal) BaseTools. > > So the patch should be fine; however, I think the subject line could be > clarified. "BaseTools: Update the NASM dependency" doesn't make it clear > that the CI builds are targeted primarily. > > Thanks > Laszlo > >> >> On Wed, Feb 17, 2021 at 7:39 PM gaoliming <gaoliming@byosoft.com.cn <mailto:gaoliming@byosoft.com.cn> > wrote: >> >>> Laszlo: >>> >>>> -----邮件原件----- >>>> 发件人: bounce+27952+71686+4905953+8761045@groups.io <mailto:bounce%2B27952%2B71686%2B4905953%2B8761045@groups.io> >>>> <bounce+27952+71686+4905953+8761045@groups.io <mailto:bounce%2B27952%2B71686%2B4905953%2B8761045@groups.io> > 代表 Laszlo Ersek >>>> 发送时间: 2021年2月16日 5:00 >>>> 收件人: devel@edk2.groups.io <mailto:devel@edk2.groups.io> ; bret@corthon.com <mailto:bret@corthon.com> >>>> 主题: Re: [edk2-devel] [PATCH v1 1/1] BaseTools: Update the NASM >>>> dependency >>>> >>>> Hi Bret, >>>> >>>> On 02/12/21 21:49, Bret Barkelew wrote: >>>>> This is primarily used by CI builds, but may also be used by platforms. >>>>> >>>>> Update NASM to support newer structures and features, as agreed in >>> recent >>>>> community meetings: >>>>> https://edk2.groups.io/g/devel/message/71289 >>>>> --- >>>>> BaseTools/Bin/nasm_ext_dep.yaml | 2 +- >>>>> 1 file changed, 1 insertion(+), 1 deletion(-) >>>>> >>>>> diff --git a/BaseTools/Bin/nasm_ext_dep.yaml >>>> b/BaseTools/Bin/nasm_ext_dep.yaml >>>>> index 60b1f71b56aa..56703d4c18e7 100644 >>>>> --- a/BaseTools/Bin/nasm_ext_dep.yaml >>>>> +++ b/BaseTools/Bin/nasm_ext_dep.yaml >>>>> @@ -13,6 +13,6 @@ >>>>> "type": "nuget", >>>>> "name": "mu_nasm", >>>>> "source": "https://api.nuget.org/v3/index.json", >>>>> - "version": "2.14.02", >>>>> + "version": "2.15.5", >>>>> "flags": ["set_path", "host_specific"] >>>>> } >>>>> >>>> >>>> (1) I'm confused by the "patchlevel" number being "5" and not "05", in >>>> the "2.15.5" version. Per >>>> <https://edk2.groups.io/g/devel/message/71045>, my understanding has >>>> been that the latest release is "2.15.05". >>>> >>>> (2) The minimum required version, according to >>>> <https://edk2.groups.io/g/devel/message/71070>, is "2.15.01". In the >>>> RHEL build environments that matter to me, I can satisfy a NASM >>>> dependency up to 2.15.03, at this time, but not beyond. And this matters >>>> because... >>>> >>> I understand CI environment tries to use the latest tool version for >>> verification. >>> >>>> (3) ... arguably, the NASM requirement in >>>> "BaseTools/Conf/tools_def.template" should be updated too, in the same >>>> patch: >>>> >>>> # - NASM 2.10 or later for use with the GCC toolchain family >>>> # - NASM 2.12.01 or later for use with all other toolchain families >>>> >>> This is edk2 build environment requirement. It will be updated when the >>> source code change is added. >>> >>> Thanks >>> Liming >>>> Thanks >>>> Laszlo >>>> >>>> >>>> >>>> >>>> >>> >>> >>> >>> >> > > > > ^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2021-02-22 10:19 UTC | newest] Thread overview: 8+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2021-02-12 20:49 [PATCH v1 1/1] BaseTools: Update the NASM dependency Bret Barkelew 2021-02-15 20:59 ` [edk2-devel] " Laszlo Ersek 2021-02-18 3:39 ` 回复: " gaoliming 2021-02-18 4:07 ` Bret Barkelew 2021-02-19 14:30 ` Laszlo Ersek 2021-02-19 17:10 ` Bret Barkelew 2021-02-20 5:16 ` 回复: " gaoliming 2021-02-22 10:19 ` Laszlo Ersek
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox