mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
16df27c51d
This allows including C headers from C++. It sadly reduced the diagnostics on C++ code as well, were there warning may make sense as unintended side effect. We may be able to drop that later on, when more C APIs are properly wrapped in native C++ APIs, so that C headers do no longer need to be compatible with C++ compilers.
15 lines
313 B
Makefile
15 lines
313 B
Makefile
MODULE = tensorflow-lite-micro-kernels
|
|
|
|
CXXEXFLAGS += -Wno-strict-overflow
|
|
CXXEXFLAGS += -Wno-type-limits
|
|
CXXEXFLAGS += -Wno-unused-parameter
|
|
|
|
ifeq (llvm,$(TOOLCHAIN))
|
|
CXXEXFLAGS += -Wno-unused-const-variable
|
|
endif
|
|
|
|
SRCXXEXT = cc
|
|
SRCXXEXCLUDE = $(wildcard *_test.$(SRCXXEXT))
|
|
|
|
include $(RIOTBASE)/Makefile.base
|