Skip to content

Commit

Permalink
Merge pull request #20628 from bmewen/master
Browse files Browse the repository at this point in the history
pkg/wamr: Added support for THUMB_VFP in wamr Makefile
  • Loading branch information
benpicco committed Apr 30, 2024
2 parents ee8569f + 150058e commit f6e63d2
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion pkg/wamr/Makefile
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 f6e63d2

Please sign in to comment.