nuttx-apps/interpreters/wamr/Kconfig
Huang Qi 0b4fa2f66a interpreters: Inroduce support for WAMR
Signed-off-by: Huang Qi <huangqi3@xiaomi.com>
2020-09-16 20:53:31 +01:00

37 lines
694 B
Plaintext

#
# For a description of the syntax of this configuration file,
# see the file kconfig-language.txt in the NuttX tools repository.
#
config INTERPRETERS_WAMR
tristate "Webassembly Micro Runtime"
default n
if INTERPRETERS_WAMR
config INTERPRETERS_WAMR_PRIORITY
int "Webassembly Micro Runtime priority"
default 100
config INTERPRETERS_WAMR_STACKSIZE
int "Webassembly Micro Runtime stack size"
default 8192
config INTERPRETERS_WAMR_AOT
bool "Enable AOT"
default n
config INTERPRETERS_WAMR_FAST
bool "Enable fast interpreter"
default n
config INTERPRETERS_WAMR_LOG
bool "Enable log"
default n
config INTERPRETERS_WAMR_LIBC_BUILTIN
bool "Enable built-in libc"
default n
endif