pkg/u8g2: fix compilation with NDEBUG

This commit is contained in:
Gunar Schorcht 2020-06-26 12:41:27 +02:00
parent e84068e945
commit 11a99889da

View File

@ -2,6 +2,9 @@ MODULE = u8g2_csrc
CFLAGS += -Wno-overlength-strings
# avoid compilation errors when NDEBUG is defined
CFLAGS += -Wno-unused-variable
ifeq (llvm,$(TOOLCHAIN))
CFLAGS += -Wno-newline-eof
endif