2020-09-15 13:38:44 +02:00
|
|
|
#
|
|
|
|
# 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
|
|
|
|
|
2020-09-29 08:21:21 +02:00
|
|
|
config INTERPRETERS_WAMR_VERSION
|
|
|
|
string "WAMR Version"
|
2021-05-26 07:10:44 +02:00
|
|
|
default "04-15-2021"
|
2020-09-29 08:21:21 +02:00
|
|
|
---help---
|
2020-12-21 09:34:32 +01:00
|
|
|
Version 09-29-2020 and later (include main) supported.
|
2020-09-29 08:21:21 +02:00
|
|
|
|
2021-11-09 07:58:42 +01:00
|
|
|
config INTERPRETERS_IWASM_TASK
|
|
|
|
bool "Webassembly iwasm task"
|
|
|
|
default y
|
|
|
|
|
|
|
|
if INTERPRETERS_IWASM_TASK
|
|
|
|
|
2020-09-15 13:38:44 +02:00
|
|
|
config INTERPRETERS_WAMR_PRIORITY
|
|
|
|
int "Webassembly Micro Runtime priority"
|
|
|
|
default 100
|
|
|
|
|
|
|
|
config INTERPRETERS_WAMR_STACKSIZE
|
|
|
|
int "Webassembly Micro Runtime stack size"
|
|
|
|
default 8192
|
|
|
|
|
2021-11-09 07:58:42 +01:00
|
|
|
endif
|
|
|
|
|
2020-09-15 13:38:44 +02:00
|
|
|
config INTERPRETERS_WAMR_AOT
|
|
|
|
bool "Enable AOT"
|
2022-05-25 05:46:47 +02:00
|
|
|
select ARCH_USE_TEXT_HEAP if ARCH_HAVE_TEXT_HEAP
|
2020-09-15 13:38:44 +02:00
|
|
|
default n
|
|
|
|
|
2021-11-09 07:58:42 +01:00
|
|
|
choice
|
|
|
|
prompt "Enable interpreter"
|
|
|
|
default INTERPRETERS_NONE
|
|
|
|
|
2020-09-15 13:38:44 +02:00
|
|
|
config INTERPRETERS_WAMR_FAST
|
|
|
|
bool "Enable fast interpreter"
|
2021-11-09 07:58:42 +01:00
|
|
|
|
|
|
|
config INTERPRETERS_WAMR_CLASSIC
|
|
|
|
bool "Enable classic interpreter"
|
|
|
|
|
|
|
|
config INTERPRETERS_NONE
|
|
|
|
bool "Disable interpreter"
|
|
|
|
|
|
|
|
endchoice
|
2020-09-15 13:38:44 +02:00
|
|
|
|
|
|
|
config INTERPRETERS_WAMR_LOG
|
|
|
|
bool "Enable log"
|
|
|
|
default n
|
|
|
|
|
|
|
|
config INTERPRETERS_WAMR_LIBC_BUILTIN
|
|
|
|
bool "Enable built-in libc"
|
|
|
|
default n
|
|
|
|
|
2022-04-27 06:23:05 +02:00
|
|
|
config INTERPRETERS_WAMR_LIBC_WASI
|
|
|
|
bool "Enable WASI libc"
|
|
|
|
default n
|
2022-05-24 03:08:50 +02:00
|
|
|
---help---
|
|
|
|
Note: As of writing this, this works only with main branch of
|
|
|
|
wasm-micro-runtime.
|
|
|
|
I.e. INTERPRETERS_WAMR_VERSION="main"
|
|
|
|
|
|
|
|
Note: As of writing this, most of the filesystem operations are
|
|
|
|
not implemented. (Mainly because of lack of openat family of
|
|
|
|
the API in NuttX.)
|
2022-04-27 06:23:05 +02:00
|
|
|
|
2020-09-17 14:09:24 +02:00
|
|
|
config INTERPRETERS_WAMR_MULTI_MODULE
|
2022-01-05 16:34:05 +01:00
|
|
|
bool "Enable multi module support"
|
2020-09-17 14:09:24 +02:00
|
|
|
default n
|
|
|
|
|
|
|
|
config INTERPRETERS_WAMR_MINILOADER
|
|
|
|
bool "Enable mini-loader"
|
|
|
|
default n
|
|
|
|
---help---
|
|
|
|
Mini-loader don't check the integrity of wasm module
|
|
|
|
|
|
|
|
config INTERPRETERS_WAMR_THREAD_MGR
|
|
|
|
bool "Enable thread manager"
|
|
|
|
default n
|
|
|
|
|
|
|
|
config INTERPRETERS_WAMR_LIB_PTHREAD
|
|
|
|
bool "Enable lib pthread"
|
|
|
|
default n
|
|
|
|
|
2021-11-09 07:58:42 +01:00
|
|
|
config INTERPRETERS_WAMR_SHARED_MEMORY
|
|
|
|
bool "Enable shared memory"
|
|
|
|
default n
|
|
|
|
|
|
|
|
config INTERPRETERS_WAMR_BULK_MEMORY
|
|
|
|
bool "Enable bluk memory"
|
|
|
|
default n
|
|
|
|
|
2022-05-20 07:35:38 +02:00
|
|
|
config INTERPRETERS_WAMR_PERF_PROFILING
|
|
|
|
bool "Enable performance profiling"
|
|
|
|
default n
|
|
|
|
|
2021-11-09 07:58:42 +01:00
|
|
|
config INTERPRETERS_WAMR_MEMORY_PROFILING
|
|
|
|
bool "Enable memory profiling"
|
|
|
|
default n
|
|
|
|
|
|
|
|
config INTERPRETERS_WAMR_MEMORY_TRACING
|
|
|
|
bool "Enable memory tracing"
|
|
|
|
default n
|
|
|
|
|
2020-09-17 14:09:24 +02:00
|
|
|
config INTERPRETERS_WAMR_DISABLE_HW_BOUND_CHECK
|
|
|
|
bool "Disable hardware bound check"
|
|
|
|
default n
|
|
|
|
|
2020-09-27 14:25:47 +02:00
|
|
|
config INTERPRETERS_WAMR_CUSTOM_NAME_SECTIONS
|
|
|
|
bool "Enable custom name section support"
|
|
|
|
default n
|
|
|
|
|
|
|
|
config INTERPRETERS_WAMR_GLOBAL_HEAP_POOL
|
|
|
|
bool "Enable global heap pool"
|
|
|
|
default n
|
|
|
|
|
|
|
|
if INTERPRETERS_WAMR_GLOBAL_HEAP_POOL
|
|
|
|
|
|
|
|
config INTERPRETERS_WAMR_GLOBAL_HEAP_POOL_SIZE
|
|
|
|
int "Global heap pool size (in KB)"
|
|
|
|
default 128
|
|
|
|
|
|
|
|
endif
|
|
|
|
|
2020-09-15 13:38:44 +02:00
|
|
|
endif
|