Reputation: 11640
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!
Upvotes: 25
Views: 48715
Reputation: 1435
This warning can be silenced by adding the flag -Qunused-arguments
It's a warning because clang does not support the -fcheck-new
argument.
Upvotes: 32