]> git.ipfire.org Git - thirdparty/git.git/commit - config.mak.dev
config.mak.dev: add -Wall, primarily for -Wformat, to help autoconf users
authorThomas Gummerer <t.gummerer@gmail.com>
Fri, 12 Oct 2018 18:40:37 +0000 (19:40 +0100)
committerJunio C Hamano <gitster@pobox.com>
Mon, 7 Jan 2019 17:02:08 +0000 (09:02 -0800)
commit6163f3f1a4288a6a17d2e3cdee4391b25ef09edd
tree614debf157f0896acfdecd97cb2b7643f50994b6
parent801fa63a90e3619c91e0bb3e7a28140e6d31a097
config.mak.dev: add -Wall, primarily for -Wformat, to help autoconf users

801fa63a90 ("config.mak.dev: add -Wformat-security", 2018-09-08)
added the "-Wformat-security" to the flags set in config.mak.dev.
In the gcc man page this is documented as:

         If -Wformat is specified, also warn about uses of format
         functions that represent possible security problems.  [...]

The commit did however not add the "-Wformat" flag, but instead
relied on the fact that "-Wall" is set in the Makefile by default
and that "-Wformat" is part of "-Wall".

Unfortunately, those who use config.mak.autogen generated with the
autoconf to configure toolchain do *not* get "-Wall" in their CFLAGS
and the added -Wformat-security had no effect.  Worse yet, newer
versions of gcc (gcc 8.2.1 in this particular case) warn about the
lack of "-Wformat" and thus compilation fails only with this option
set.

We could fix it by adding "-Wformat", but in general we do want all
checks included in "-Wall", so let's add it to config.mak.dev to
cover more cases.

Signed-off-by: Thomas Gummerer <t.gummerer@gmail.com>
Helped-by: Jeff King <peff@peff.net>
Helped-by: Jonathan Nieder <jrnieder@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
config.mak.dev