vote up 0 vote down star

It's a part of larger code base, which forces -Werror on gcc. This warning is generated in a third party code that shouldn't be changed (and I actually know how to fix it), but I can disable specific warnings. This time man gcc failed me, so please, let some gcc master enlighten me. TIA.

flag

Many GNU programs have abbreviated man pages. The "info" pages and HTML documentation are usually much more thorough. – bk1e Sep 22 '08 at 1:52

3 Answers

vote up 6 vote down check

It is the -Wno-unused-value option, see the documentation

link|flag
That made it, thank you! To be literal it's Wno-unused-value though. – phjr Sep 21 '08 at 17:23
vote up 4 vote down

If you use -fdiagnostics-show-option, GCC will tell you how to disable a warning (if possible).

link|flag
Wow, yet another thing I didn't know. Thanks! – phjr Sep 21 '08 at 19:47
vote up 0 vote down

Have you tried using a diagnostic pragma directive? These are available in gcc 4.2.1+, I believe.

link|flag
That would have the same effect, but I can't edit the files. Thanks anyway, I may need that later. – phjr Sep 21 '08 at 17:23

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.