Re: [PATCH 3/4] kbuild: check the minimum assembler version in Kconfig

2021-03-06 Thread Nathan Chancellor
On Sat, Mar 06, 2021 at 02:48:38AM +0900, Masahiro Yamada wrote: > On Fri, Mar 5, 2021 at 10:26 AM Nick Desaulniers > wrote: > > > > On Wed, Mar 3, 2021 at 10:34 AM Masahiro Yamada > > wrote: > > > > > > Documentation/process/changes.rst defines the minimum assembler version > > > (binutils

Re: [PATCH 3/4] kbuild: check the minimum assembler version in Kconfig

2021-03-05 Thread Masahiro Yamada
On Fri, Mar 5, 2021 at 10:26 AM Nick Desaulniers wrote: > > On Wed, Mar 3, 2021 at 10:34 AM Masahiro Yamada wrote: > > > > Documentation/process/changes.rst defines the minimum assembler version > > (binutils version), but we have never checked it in the build time. > > > > Kbuild never invokes

Re: [PATCH 3/4] kbuild: check the minimum assembler version in Kconfig

2021-03-04 Thread Nick Desaulniers
On Wed, Mar 3, 2021 at 10:34 AM Masahiro Yamada wrote: > > Documentation/process/changes.rst defines the minimum assembler version > (binutils version), but we have never checked it in the build time. > > Kbuild never invokes 'as' directly because all assembly files in the > kernel tree are *.S,

Re: [PATCH 3/4] kbuild: check the minimum assembler version in Kconfig

2021-03-03 Thread Nathan Chancellor
On Thu, Mar 04, 2021 at 03:33:32AM +0900, Masahiro Yamada wrote: > Documentation/process/changes.rst defines the minimum assembler version > (binutils version), but we have never checked it in the build time. > > Kbuild never invokes 'as' directly because all assembly files in the > kernel tree

[PATCH 3/4] kbuild: check the minimum assembler version in Kconfig

2021-03-03 Thread Masahiro Yamada
Documentation/process/changes.rst defines the minimum assembler version (binutils version), but we have never checked it in the build time. Kbuild never invokes 'as' directly because all assembly files in the kernel tree are *.S, hence must be preprocessed. I do not expect raw assembly source