Skip to content

Commit

Permalink
nuttx: Add option to enable quick aot entry (bytecodealliance#3040)
Browse files Browse the repository at this point in the history
  • Loading branch information
no1wudi authored Jan 17, 2024
1 parent 6fb376c commit dcaaed0
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions product-mini/platforms/nuttx/wamr.mk
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,12 @@ else
CFLAGS += -DWASM_ENABLE_AOT=0
endif

ifeq ($(CONFIG_INTERPRETERS_WAMR_AOT_QUICK_ENTRY),y)
CFLAGS += -DWASM_ENABLE_QUICK_AOT_ENTRY=1
else
CFLAGS += -DWASM_ENABLE_QUICK_AOT_ENTRY=0
endif

ifeq ($(CONFIG_INTERPRETERS_WAMR_AOT_WORD_ALIGN_READ),y)
CFLAGS += -DWASM_ENABLE_WORD_ALIGN_READ=1
else
Expand Down

0 comments on commit dcaaed0

Please sign in to comment.