]> git.ipfire.org Git - thirdparty/git.git/blame - config.mak.dev
config: improve error message for boolean config
[thirdparty/git.git] / config.mak.dev
CommitLineData
99f763ba 1ifeq ($(filter no-error,$(DEVOPTS)),)
6d5d4b4e 2DEVELOPER_CFLAGS += -Werror
521dc562 3SPARSE_FLAGS += -Wsparse-error
99f763ba 4endif
729b3925 5ifneq ($(filter pedantic,$(DEVOPTS)),)
6d5d4b4e 6DEVELOPER_CFLAGS += -pedantic
729b3925 7# don't warn for each N_ use
6d5d4b4e
ÆAB
8DEVELOPER_CFLAGS += -DUSE_PARENS_AROUND_GETTEXT_N=0
9endif
10DEVELOPER_CFLAGS += -Wall
11DEVELOPER_CFLAGS += -Wdeclaration-after-statement
12DEVELOPER_CFLAGS += -Wformat-security
6d5d4b4e
ÆAB
13DEVELOPER_CFLAGS += -Wold-style-definition
14DEVELOPER_CFLAGS += -Woverflow
15DEVELOPER_CFLAGS += -Wpointer-arith
16DEVELOPER_CFLAGS += -Wstrict-prototypes
17DEVELOPER_CFLAGS += -Wunused
18DEVELOPER_CFLAGS += -Wvla
55391836 19DEVELOPER_CFLAGS += -fno-common
1da1580e
NTND
20
21ifndef COMPILER_FEATURES
22COMPILER_FEATURES := $(shell ./detect-compiler $(CC))
23endif
24
25ifneq ($(filter clang4,$(COMPILER_FEATURES)),)
6d5d4b4e 26DEVELOPER_CFLAGS += -Wtautological-constant-out-of-range-compare
1da1580e
NTND
27endif
28
29ifneq ($(or $(filter gcc6,$(COMPILER_FEATURES)),$(filter clang4,$(COMPILER_FEATURES))),)
6d5d4b4e 30DEVELOPER_CFLAGS += -Wextra
1da1580e
NTND
31# if a function is public, there should be a prototype and the right
32# header file should be included. If not, it should be static.
6d5d4b4e 33DEVELOPER_CFLAGS += -Wmissing-prototypes
26d2e4fb 34ifeq ($(filter extra-all,$(DEVOPTS)),)
1da1580e 35# These are disabled because we have these all over the place.
6d5d4b4e
ÆAB
36DEVELOPER_CFLAGS += -Wno-empty-body
37DEVELOPER_CFLAGS += -Wno-missing-field-initializers
38DEVELOPER_CFLAGS += -Wno-sign-compare
39DEVELOPER_CFLAGS += -Wno-unused-parameter
1da1580e 40endif
26d2e4fb 41endif
1da1580e
NTND
42
43# uninitialized warnings on gcc 4.9.2 in xdiff/xdiffi.c and config.c
44# not worth fixing since newer compilers correctly stop complaining
45ifneq ($(filter gcc4,$(COMPILER_FEATURES)),)
46ifeq ($(filter gcc5,$(COMPILER_FEATURES)),)
6d5d4b4e 47DEVELOPER_CFLAGS += -Wno-uninitialized
1da1580e
NTND
48endif
49endif
5338ed2b
JK
50
51GIT_TEST_PERL_FATAL_WARNINGS = YesPlease