xcode/clang: clang: warning: argument unused during compilation: '-fcheck-new'
clang, gcc, warnings, xcode
Solution
This warning can be silenced by adding the flag `-Qunused-arguments`
It's a warning because clang does not support the `-fcheck-new` argument.
Problem
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!