1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-24 14:03:55 +01:00

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