This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: preprocessor/7029: preprocessor should ignore #warning with -M


> IMHO, warnings generated by #warning may be omitted when not
> actually compiling code, for example when using -M to
> generate dependency lists. They seem inappropriate for this
> task.
> >How-To-Repeat:
> program> echo "#warning Warn about something" > x.cc
> program> gcc -M x.cc 
> x.cc:1:2: warning: #warning Warn about something
> x.o: x.cc

Warnings are sent to stderr and the dpendency information isn't; so if
you don't want the warnings you are free to pipe stderr to /dev/null.
If you still wanted to retain errors but not warnings you can use -w,
or check the compiler return code.

So I disagree that there is any reason to change the existing behaviour,
and want to close this PR.  Do you agree, Zack?

Neil.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]