Skip to content
Snippets Groups Projects
Unverified Commit 08ff1b73 authored by Gaëtan Harter's avatar Gaëtan Harter
Browse files

makefiles/cflags.inc.mk: add -Wmissing-include-dirs flag

Warn if a user-supplied include directory does not exist.
parent 726581fc
No related branches found
No related tags found
No related merge requests found
...@@ -60,6 +60,9 @@ CFLAGS += -fno-common ...@@ -60,6 +60,9 @@ CFLAGS += -fno-common
# Enable all default warnings # Enable all default warnings
CFLAGS += -Wall CFLAGS += -Wall
# Warn if a user-supplied include directory does not exist.
CFLAGS += -Wmissing-include-dirs
ifeq (,$(filter -DDEVELHELP,$(CFLAGS))) ifeq (,$(filter -DDEVELHELP,$(CFLAGS)))
ifneq (1,$(FORCE_ASSERTS)) ifneq (1,$(FORCE_ASSERTS))
CFLAGS += -DNDEBUG CFLAGS += -DNDEBUG
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment