We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb5de7d commit 406c2d9Copy full SHA for 406c2d9
make/riot/external_modules/reactor-uc/Makefile.include
@@ -4,6 +4,12 @@ CFLAGS += -DPLATFORM_RIOT=1
4
# Remove the -Wcast-align flag for this module
5
CFLAGS := $(filter-out -Wcast-align,$(CFLAGS))
6
7
+# Remove the -Wstrict-prototypes flag for this module
8
+CFLAGS := $(filter-out -Wstrict-prototypes,$(CFLAGS))
9
+
10
+# Remove the -Wold-style-definition flag for this module
11
+CFLAGS := $(filter-out -Wold-style-definition,$(CFLAGS))
12
13
# Use an immediate variable to evaluate `MAKEFILE_LIST` now
14
USEMODULE_INCLUDES_reactor-uc := $(LAST_MAKEFILEDIR)/../../../../include
15
USEMODULE_INCLUDES += $(USEMODULE_INCLUDES_reactor-uc)
0 commit comments