Skip to content

Commit

Permalink
pkg/wamr: Added support of THUMB_VFP
Browse files Browse the repository at this point in the history
  • Loading branch information
bmewen authored and mewen.berthelot committed Apr 30, 2024
1 parent 70c70e2 commit 150058e
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion pkg/wamr/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 150058e

Please sign in to comment.