From 1c03b67cab68c2b35eece65f769a56e6e7ca935f Mon Sep 17 00:00:00 2001 From: Kaspar Schleiser <kaspar@schleiser.de> Date: Fri, 11 May 2018 23:01:43 +0200 Subject: [PATCH] sys/uart_stdio: compile with -Wno-cast-function-type --- sys/uart_stdio/Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/sys/uart_stdio/Makefile b/sys/uart_stdio/Makefile index 48422e909a..7f3b72f4a6 100644 --- a/sys/uart_stdio/Makefile +++ b/sys/uart_stdio/Makefile @@ -1 +1,4 @@ +ifeq (gnu, $(TOOLCHAIN)) + CFLAGS += -Wno-cast-function-type +endif include $(RIOTBASE)/Makefile.base -- GitLab