Re: [PATCH] Makefile: reuse CC_VERSION_TEXT

2021-02-24 Thread Nathan Chancellor
On Wed, Feb 24, 2021 at 12:14:04PM +0900, Masahiro Yamada wrote: > On Sat, Feb 6, 2021 at 12:46 PM Sedat Dilek wrote: > > > > On Sat, Feb 6, 2021 at 2:49 AM Masahiro Yamada wrote: > > > > > > On Sat, Feb 6, 2021 at 7:01 AM 'Nick Desaulniers' via Clang Built > > > Linux wrote: > > > > > > > > I

Re: [PATCH] Makefile: reuse CC_VERSION_TEXT

2021-02-23 Thread Masahiro Yamada
On Sat, Feb 6, 2021 at 12:46 PM Sedat Dilek wrote: > > On Sat, Feb 6, 2021 at 2:49 AM Masahiro Yamada wrote: > > > > On Sat, Feb 6, 2021 at 7:01 AM 'Nick Desaulniers' via Clang Built > > Linux wrote: > > > > > > I noticed we're invoking $(CC) via $(shell) more than once to check the > > >

Re: [PATCH] Makefile: reuse CC_VERSION_TEXT

2021-02-23 Thread Masahiro Yamada
On Wed, Feb 24, 2021 at 5:10 AM 'Nick Desaulniers' via Clang Built Linux wrote: > > On Fri, Feb 5, 2021 at 5:49 PM Masahiro Yamada wrote: > > > > On Sat, Feb 6, 2021 at 7:01 AM 'Nick Desaulniers' via Clang Built > > Linux wrote: > > > > > > I noticed we're invoking $(CC) via $(shell) more than

Re: [PATCH] Makefile: reuse CC_VERSION_TEXT

2021-02-23 Thread Nick Desaulniers
On Fri, Feb 5, 2021 at 5:49 PM Masahiro Yamada wrote: > > On Sat, Feb 6, 2021 at 7:01 AM 'Nick Desaulniers' via Clang Built > Linux wrote: > > > > I noticed we're invoking $(CC) via $(shell) more than once to check the > > version. Let's reuse the first string captured in $CC_VERSION_TEXT. > >

Re: [PATCH] Makefile: reuse CC_VERSION_TEXT

2021-02-05 Thread Sedat Dilek
On Sat, Feb 6, 2021 at 2:49 AM Masahiro Yamada wrote: > > On Sat, Feb 6, 2021 at 7:01 AM 'Nick Desaulniers' via Clang Built > Linux wrote: > > > > I noticed we're invoking $(CC) via $(shell) more than once to check the > > version. Let's reuse the first string captured in $CC_VERSION_TEXT. > >

Re: [PATCH] Makefile: reuse CC_VERSION_TEXT

2021-02-05 Thread Masahiro Yamada
On Sat, Feb 6, 2021 at 7:01 AM 'Nick Desaulniers' via Clang Built Linux wrote: > > I noticed we're invoking $(CC) via $(shell) more than once to check the > version. Let's reuse the first string captured in $CC_VERSION_TEXT. > > Fixes: 315bab4e972d ("kbuild: fix endless syncconfig in case arch

[PATCH] Makefile: reuse CC_VERSION_TEXT

2021-02-05 Thread Nick Desaulniers
I noticed we're invoking $(CC) via $(shell) more than once to check the version. Let's reuse the first string captured in $CC_VERSION_TEXT. Fixes: 315bab4e972d ("kbuild: fix endless syncconfig in case arch Makefile sets CROSS_COMPILE") Signed-off-by: Nick Desaulniers --- Makefile | 14