]> git.ipfire.org Git - thirdparty/git.git/blame - config.mak.dev
Merge branch 'bc/sha-256-part-2'
[thirdparty/git.git] / config.mak.dev
CommitLineData
99f763ba 1ifeq ($(filter no-error,$(DEVOPTS)),)
6d5d4b4e 2DEVELOPER_CFLAGS += -Werror
99f763ba 3endif
729b3925 4ifneq ($(filter pedantic,$(DEVOPTS)),)
6d5d4b4e 5DEVELOPER_CFLAGS += -pedantic
729b3925 6# don't warn for each N_ use
6d5d4b4e
ÆAB
7DEVELOPER_CFLAGS += -DUSE_PARENS_AROUND_GETTEXT_N=0
8endif
9DEVELOPER_CFLAGS += -Wall
10DEVELOPER_CFLAGS += -Wdeclaration-after-statement
11DEVELOPER_CFLAGS += -Wformat-security
6d5d4b4e
ÆAB
12DEVELOPER_CFLAGS += -Wold-style-definition
13DEVELOPER_CFLAGS += -Woverflow
14DEVELOPER_CFLAGS += -Wpointer-arith
15DEVELOPER_CFLAGS += -Wstrict-prototypes
16DEVELOPER_CFLAGS += -Wunused
17DEVELOPER_CFLAGS += -Wvla
1da1580e 18
94127599 19DEVELOPER_CFLAGS += -DENABLE_SHA256
20
1da1580e
NTND
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