Hello,

Reuben Thomas wrote:
> I compile my code with -pedantic, because I want it to work with compilers 
> other than GCC. This means that my compiler output is littered with warnings 
> about #include_next.

gnulib is clever enough to use #include_next only with compilers that support it
(i.e. gcc and Tru64 cc), but gcc does not know about it... So just ignore
this warning.

> How can I stop this?

You could ask the GCC developers for an explicit control of the particular
warning.

Or you can filter out the warnings that you don't like.

Or you can use "rerun make" instead of "make". 'rerun' is a command which
outputs not the entire output of a command, but only the diffs compared to
its last run. This is useful when commands produce a lot of output.

Bruno

Attachment: rerun
Description: application/shellscript

Reply via email to