mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
16 lines
461 B
Makefile
16 lines
461 B
Makefile
IWASM_CORE := $(PKGDIRBASE)/wamr/core
|
|
IWASM_ROOT := $(IWASM_CORE)/iwasm
|
|
SHARED_LIB_ROOT := $(IWASM_CORE)/shared
|
|
|
|
IWASM_INCLUDES += ${IWASM_ROOT}/include \
|
|
${SHARED_LIB_ROOT}/platform/include \
|
|
${SHARED_LIB_ROOT}/platform/riot \
|
|
#
|
|
|
|
INCLUDES += $(addprefix -I,${IWASM_INCLUDES})
|
|
|
|
ARCHIVES += $(BINDIR)/libwamr.a
|
|
|
|
# clang stumbles upon the asm syntax, likely it ignores -mthumb
|
|
TOOLCHAINS_BLACKLIST += llvm
|