Re: [PATCH] Show dangerous warning when -Werror option is used

2018-04-01 Thread Pali Rohár
On Sunday 01 April 2018 17:05:13 David Malcolm wrote: > On Sun, 2018-04-01 at 22:40 +0200, Pali Rohár wrote: > > On Sunday 01 April 2018 14:32:26 Segher Boessenkool wrote: > > > On Sun, Apr 01, 2018 at 12:05:40PM +0200, Pali Rohár wrote: > > > > Command line option -Werror is dangerous as it could

Re: [PATCH] Show dangerous warning when -Werror option is used

2018-04-01 Thread David Malcolm
On Sun, 2018-04-01 at 22:40 +0200, Pali Rohár wrote: > On Sunday 01 April 2018 14:32:26 Segher Boessenkool wrote: > > On Sun, Apr 01, 2018 at 12:05:40PM +0200, Pali Rohár wrote: > > > Command line option -Werror is dangerous as it could cause > > > problems for > > > compiling applications in futur

Re: [PATCH] Show dangerous warning when -Werror option is used

2018-04-01 Thread Gerald Pfeifer
On Sun, 1 Apr 2018, Pali Rohár wrote: > Command line option -Werror is dangerous as it could cause problems for > compiling applications in future. Once gcc introduces a new warning or > change logic for existing warnings then compilation of existing > application via gcc could throw a new warning.

Re: [PATCH] Show dangerous warning when -Werror option is used

2018-04-01 Thread Pali Rohár
On Sunday 01 April 2018 14:32:26 Segher Boessenkool wrote: > On Sun, Apr 01, 2018 at 12:05:40PM +0200, Pali Rohár wrote: > > Command line option -Werror is dangerous as it could cause problems for > > compiling applications in future. Once gcc introduces a new warning or > > change logic for existi

Re: [PATCH] Show dangerous warning when -Werror option is used

2018-04-01 Thread Segher Boessenkool
On Sun, Apr 01, 2018 at 12:05:40PM +0200, Pali Rohár wrote: > Command line option -Werror is dangerous as it could cause problems for > compiling applications in future. Once gcc introduces a new warning or > change logic for existing warnings then compilation of existing > application via gcc coul

Re: [PATCH] Show dangerous warning when -Werror option is used

2018-04-01 Thread Marek Polacek
On Sun, Apr 01, 2018 at 12:05:40PM +0200, Pali Rohár wrote: > Command line option -Werror is dangerous as it could cause problems for > compiling applications in future. Once gcc introduces a new warning or > change logic for existing warnings then compilation of existing > application via gcc coul

[PATCH] Show dangerous warning when -Werror option is used

2018-04-01 Thread Pali Rohár
Command line option -Werror is dangerous as it could cause problems for compiling applications in future. Once gcc introduces a new warning or change logic for existing warnings then compilation of existing application via gcc could throw a new warning. As -Werror makes all warnings fatal, it make