mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-12-22 13:03:54 +01:00
16 lines
491 B
Makefile
16 lines
491 B
Makefile
INCLUDES += -I$(PKGDIRBASE)/utensor
|
|
INCLUDES += -I$(PKGDIRBASE)/utensor/src
|
|
INCLUDES += -I$(PKGDIRBASE)/utensor/src/uTensor
|
|
INCLUDES += -I$(PKGDIRBASE)/utensor/src/uTensor/core
|
|
INCLUDES += -I$(PKGDIRBASE)/utensor/src/uTensor/ops
|
|
INCLUDES += -I$(PKGDIRBASE)/utensor/src/uTensor/util
|
|
|
|
CXXEXFLAGS += -Wno-sign-compare
|
|
|
|
ifeq (llvm,$(TOOLCHAIN))
|
|
CXXEXFLAGS += -Wno-unused-variable
|
|
CXXEXFLAGS += -Wno-shift-count-negative
|
|
else if (esp32,$(CPU))
|
|
CXXEXFLAGS += -Wno-shift-count-negative
|
|
endif
|