Re: [PATCH] kbuild: Make NOSTDINC_FLAGS a simply expanded variable

2019-03-15 Thread Doug Anderson
Hi, On Fri, Mar 15, 2019 at 9:09 AM Masahiro Yamada wrote: > > Hi, > > On Sat, Mar 16, 2019 at 12:41 AM Doug Anderson wrote: > > > > Hi, > > > > On Fri, Mar 15, 2019 at 8:37 AM Masahiro Yamada > > wrote: > > > > > > On Sat, Mar 16, 2019 at 12:27 AM Masahiro Yamada > > > wrote: > > > > > > > >

Re: [PATCH] kbuild: Make NOSTDINC_FLAGS a simply expanded variable

2019-03-15 Thread Masahiro Yamada
Hi, On Sat, Mar 16, 2019 at 12:41 AM Doug Anderson wrote: > > Hi, > > On Fri, Mar 15, 2019 at 8:37 AM Masahiro Yamada > wrote: > > > > On Sat, Mar 16, 2019 at 12:27 AM Masahiro Yamada > > wrote: > > > > > > On Fri, Mar 15, 2019 at 8:42 AM Douglas Anderson > > > wrote: > > > > > > > > During

Re: [PATCH] kbuild: Make NOSTDINC_FLAGS a simply expanded variable

2019-03-15 Thread Doug Anderson
Hi, On Fri, Mar 15, 2019 at 8:37 AM Masahiro Yamada wrote: > > On Sat, Mar 16, 2019 at 12:27 AM Masahiro Yamada > wrote: > > > > On Fri, Mar 15, 2019 at 8:42 AM Douglas Anderson > > wrote: > > > > > > During a simple no-op (nothing changed) build I saw 39 invocations of > > > the C compiler

Re: [PATCH] kbuild: Make NOSTDINC_FLAGS a simply expanded variable

2019-03-15 Thread Masahiro Yamada
On Sat, Mar 16, 2019 at 12:27 AM Masahiro Yamada wrote: > > On Fri, Mar 15, 2019 at 8:42 AM Douglas Anderson > wrote: > > > > During a simple no-op (nothing changed) build I saw 39 invocations of > > the C compiler with the argument "-print-file-name=include". We don't > > need to call the C

Re: [PATCH] kbuild: Make NOSTDINC_FLAGS a simply expanded variable

2019-03-15 Thread Masahiro Yamada
On Fri, Mar 15, 2019 at 8:42 AM Douglas Anderson wrote: > > During a simple no-op (nothing changed) build I saw 39 invocations of > the C compiler with the argument "-print-file-name=include". We don't > need to call the C compiler 39 times for this--one time will suffice. > > Let's change

[PATCH] kbuild: Make NOSTDINC_FLAGS a simply expanded variable

2019-03-14 Thread Douglas Anderson
During a simple no-op (nothing changed) build I saw 39 invocations of the C compiler with the argument "-print-file-name=include". We don't need to call the C compiler 39 times for this--one time will suffice. Let's change NOSTDINC_FLAGS to a simply expanded variable to avoid this since there