As title:
I’m constantly getting this warning that flooded out my screen in Xcode4 for the -fcheck-new options that I use.
clang: warning: argument unused during compilation: '-fcheck-new'
Is it that clang does not support this gcc compiler option??? How can I get rid of the warnings?
Thanks!
This warning can be silenced by adding the flag
-Qunused-argumentsIt’s a warning because clang does not support the
-fcheck-newargument.