1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

make: Clean up WERROR handling

This commit is contained in:
Joakim Nohlgård 2018-06-14 23:32:04 +02:00
parent 68dc5b0d6e
commit b36afc3964
2 changed files with 4 additions and 4 deletions

View File

@ -129,13 +129,13 @@ endif
WERROR ?= 1
export WERROR
ifeq ($(WERROR),1)
CFLAGS += -Wall -Werror -Wextra
CFLAGS += -Werror
endif
WPEDANTIC ?= 0
export WPEDANTIC
ifeq ($(WPEDANTIC),1)
CFLAGS += -Wpedantic -pedantic-errors
CFLAGS += -Wpedantic
endif
# remove this once codebase is adapted

View File

@ -57,8 +57,8 @@ endif
# Forbid common symbols to prevent accidental aliasing.
CFLAGS += -fno-common
# Enable all default warnings
CFLAGS += -Wall
# Enable all default warnings and all extra warnings
CFLAGS += -Wall -Wextra
# Warn if a user-supplied include directory does not exist.
CFLAGS += -Wmissing-include-dirs