vote up 0 vote down star

Hi all,

Is there any way to suppress Compiler warnings ??

Thanks

flag

Which Objective-C compiler are you using? – Artelius Oct 30 at 11:16
8  
You can edit your source code so that the compiler no longer complains. – mouviciel Oct 30 at 11:33
2  
Suppress the warnings by fixing your code. There is basically no reason why working code should ever generate a warning. – bbum Oct 30 at 15:25

1 Answer

vote up 1 vote down check

If you don't want to see them in Xcode, you can suppress them by right-clicking on a source window and selecting Message Bubbles | Errors Only. There will still be a little warning symbol next to the line, but the text of the warnings will not appear.

You can prevent the compiler from generating warnings by opening the project info window and going to the build tab. There is an Inhibit All Warnings checkbox under the GCC #.# - Warnings section. That looks like it will do what you want.

If you're building from the command line, you might try these switches:

-GCC_WARN_INHIBIT_ALL_WARNINGS -w

I've never tried those switches. They were listed in the help area in the project info window.

But the best solution, of course, is to figure out why your code has warnings and fix it.

link|flag

Your Answer

Get an OpenID
or

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