Re: [PATCH 3/3] kbuild: add -Wno-unused-but-set-variable compiler flag unconditionally

2018-10-01 Thread Nick Desaulniers
On Mon, Oct 1, 2018 at 3:24 PM Masahiro Yamada wrote: > > 2018年10月2日(火) 4:58 Nick Desaulniers : > > > > On Mon, Oct 1, 2018 at 12:02 PM Masahiro Yamada > > wrote: > > > > > > Hi Nick, > > > > > > 2018年10月2日(火) 2:18 Nick Desaulniers : > > > > > > > > On Mon, Oct 1, 2018 at 2:45 AM Masahiro Yamada

Re: [PATCH 3/3] kbuild: add -Wno-unused-but-set-variable compiler flag unconditionally

2018-10-01 Thread Nick Desaulniers
On Mon, Oct 1, 2018 at 3:24 PM Masahiro Yamada wrote: > > 2018年10月2日(火) 4:58 Nick Desaulniers : > > > > On Mon, Oct 1, 2018 at 12:02 PM Masahiro Yamada > > wrote: > > > > > > Hi Nick, > > > > > > 2018年10月2日(火) 2:18 Nick Desaulniers : > > > > > > > > On Mon, Oct 1, 2018 at 2:45 AM Masahiro Yamada

Re: [PATCH 3/3] kbuild: add -Wno-unused-but-set-variable compiler flag unconditionally

2018-10-01 Thread Masahiro Yamada
2018年10月2日(火) 4:58 Nick Desaulniers : > > On Mon, Oct 1, 2018 at 12:02 PM Masahiro Yamada > wrote: > > > > Hi Nick, > > > > 2018年10月2日(火) 2:18 Nick Desaulniers : > > > > > > On Mon, Oct 1, 2018 at 2:45 AM Masahiro Yamada > > > wrote: > > > > > > > > We have raised the compiler requirement from

Re: [PATCH 3/3] kbuild: add -Wno-unused-but-set-variable compiler flag unconditionally

2018-10-01 Thread Masahiro Yamada
2018年10月2日(火) 4:58 Nick Desaulniers : > > On Mon, Oct 1, 2018 at 12:02 PM Masahiro Yamada > wrote: > > > > Hi Nick, > > > > 2018年10月2日(火) 2:18 Nick Desaulniers : > > > > > > On Mon, Oct 1, 2018 at 2:45 AM Masahiro Yamada > > > wrote: > > > > > > > > We have raised the compiler requirement from

Re: [PATCH 3/3] kbuild: add -Wno-unused-but-set-variable compiler flag unconditionally

2018-10-01 Thread Nick Desaulniers
On Mon, Oct 1, 2018 at 12:02 PM Masahiro Yamada wrote: > > Hi Nick, > > 2018年10月2日(火) 2:18 Nick Desaulniers : > > > > On Mon, Oct 1, 2018 at 2:45 AM Masahiro Yamada > > wrote: > > > > > > We have raised the compiler requirement from time to time. > > > With commit cafa0010cd51 ("Raise the

Re: [PATCH 3/3] kbuild: add -Wno-unused-but-set-variable compiler flag unconditionally

2018-10-01 Thread Nick Desaulniers
On Mon, Oct 1, 2018 at 12:02 PM Masahiro Yamada wrote: > > Hi Nick, > > 2018年10月2日(火) 2:18 Nick Desaulniers : > > > > On Mon, Oct 1, 2018 at 2:45 AM Masahiro Yamada > > wrote: > > > > > > We have raised the compiler requirement from time to time. > > > With commit cafa0010cd51 ("Raise the

Re: [PATCH 3/3] kbuild: add -Wno-unused-but-set-variable compiler flag unconditionally

2018-10-01 Thread Masahiro Yamada
Hi Nick, 2018年10月2日(火) 2:18 Nick Desaulniers : > > On Mon, Oct 1, 2018 at 2:45 AM Masahiro Yamada > wrote: > > > > We have raised the compiler requirement from time to time. > > With commit cafa0010cd51 ("Raise the minimum required gcc version > > to 4.6"), the minimum for GCC is 4.6 now. > > >

Re: [PATCH 3/3] kbuild: add -Wno-unused-but-set-variable compiler flag unconditionally

2018-10-01 Thread Masahiro Yamada
Hi Nick, 2018年10月2日(火) 2:18 Nick Desaulniers : > > On Mon, Oct 1, 2018 at 2:45 AM Masahiro Yamada > wrote: > > > > We have raised the compiler requirement from time to time. > > With commit cafa0010cd51 ("Raise the minimum required gcc version > > to 4.6"), the minimum for GCC is 4.6 now. > > >

Re: [PATCH 3/3] kbuild: add -Wno-unused-but-set-variable compiler flag unconditionally

2018-10-01 Thread Nick Desaulniers
On Mon, Oct 1, 2018 at 2:45 AM Masahiro Yamada wrote: > > We have raised the compiler requirement from time to time. > With commit cafa0010cd51 ("Raise the minimum required gcc version > to 4.6"), the minimum for GCC is 4.6 now. > > This flag was added by GCC 4.6, and it is recognized by Clang

Re: [PATCH 3/3] kbuild: add -Wno-unused-but-set-variable compiler flag unconditionally

2018-10-01 Thread Nick Desaulniers
On Mon, Oct 1, 2018 at 2:45 AM Masahiro Yamada wrote: > > We have raised the compiler requirement from time to time. > With commit cafa0010cd51 ("Raise the minimum required gcc version > to 4.6"), the minimum for GCC is 4.6 now. > > This flag was added by GCC 4.6, and it is recognized by Clang

[PATCH 3/3] kbuild: add -Wno-unused-but-set-variable compiler flag unconditionally

2018-10-01 Thread Masahiro Yamada
We have raised the compiler requirement from time to time. With commit cafa0010cd51 ("Raise the minimum required gcc version to 4.6"), the minimum for GCC is 4.6 now. This flag was added by GCC 4.6, and it is recognized by Clang and ICC as well. Let's rip off the cc-disable-warning switch, and

[PATCH 3/3] kbuild: add -Wno-unused-but-set-variable compiler flag unconditionally

2018-10-01 Thread Masahiro Yamada
We have raised the compiler requirement from time to time. With commit cafa0010cd51 ("Raise the minimum required gcc version to 4.6"), the minimum for GCC is 4.6 now. This flag was added by GCC 4.6, and it is recognized by Clang and ICC as well. Let's rip off the cc-disable-warning switch, and