-Wno-deprecated flag not working?
Alexey Salmin
alexey.salmin@gmail.com
Thu Nov 12 05:48:00 GMT 2009
That's strange. According to documentation (as far as I get it) this
warning is enabled by option '-Wwrite-strings' which is not even
included in -Wall.
On Thu, Nov 12, 2009 at 4:04 AM, Peter Rockett
<p.rockett@sheffield.ac.uk> wrote:
> I am trying to compile the simple program:
>
>
> int main()
> {
> char* x[] = {"hello", "my", "boy"};
> return 0;
> }
>
> and I get a warning: deprecated conversion from string constant to
> ‘char*’. (OK - I expect that.) But when I add the -Wno-deprecated flag
> to the command line I still get the warning. The -Wno-deprecated flag
> does not seem to be suppressing the warning.
>
> Even odder, the latest MinGW port (version 4.4.0) doesn't report any
> warning, even without the compiler flag!
>
> Am I missing something?
>
> (Actually, I am trying to compile something with loads of embedded XPM
> files which graphics programs produce in the style above. I don't want
> to edit any of these, just suppress the ~1000 compilation warnings I'm
> getting.)
>
> BTW: Ubuntu 9.10 and gcc 4.4.2
>
> Peter
>
>
More information about the Gcc-help
mailing list