build-sys: Append -Werror when testing flags
authorLucas De Marchi <lucas.demarchi@profusion.mobi>
Fri, 14 Sep 2012 14:18:41 +0000 (11:18 -0300)
committerLucas De Marchi <lucas.demarchi@profusion.mobi>
Fri, 14 Sep 2012 14:37:29 +0000 (11:37 -0300)
commit7812d88c95e10e690c3d1c057ab2fa7ad1edaafa
tree8f6bfbb4c7d894b8b18ec7b1c597824a73ddb00e
parenta7fbae03158ab8449e0ff7220b1d92f075d1aadd
build-sys: Append -Werror when testing flags

Clang doesn't treat unknown warnings flags as an error, but rather as a
warning. The result is that the detection for whic CFLAGS are supported
by this compiler will not work, since the compilation will succeed.

With this patch we now successfully detect clang doesn't support
-Wlogical-op, as opposed to previous behavior:

checking if clang supports flag -Wlogical-op in envvar CFLAGS... no

We use this macro only for LDFLAGS and CFLAGS, so it's safe to stash
-Werror there.
m4/attributes.m4