1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

pkg/wamr: Added support of THUMB_VFP

This commit is contained in:
Berthelot Mewen 2024-04-26 15:09:05 +02:00 committed by mewen.berthelot
parent 70c70e2afc
commit 150058e8dd

View File

@ -44,7 +44,11 @@ ifeq ($(findstring aarch,$(OS_ARCH)),aarch)
WAMR_BUILD_TARGET = ARM
endif
else ifeq ($(findstring arm,$(CPU_ARCH)),arm)
WAMR_BUILD_TARGET = THUMB
ifeq ($(findstring cortexm_fpu,$(FEATURES_PROVIDED)),cortexm_fpu)
WAMR_BUILD_TARGET = THUMB_VFP
else
WAMR_BUILD_TARGET = THUMB
endif
else ifeq ($(CPU_ARCH),xtensa)
WAMR_BUILD_TARGET = XTENSA
else ifeq ($(CPU_ARCH),rv32)