mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
18 lines
484 B
Makefile
18 lines
484 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
|
|
endif
|
|
|
|
ifneq (native,$(BOARD))
|
|
CXXEXFLAGS += -std=c++11
|
|
endif
|