2022-10-19 16:08:57 +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_TOYWASM
|
|
|
|
tristate "Toywasm Webassembly Runtime"
|
|
|
|
default n
|
|
|
|
|
2022-12-19 17:07:50 +01:00
|
|
|
# TOYWASM_ENABLE_WASM_THREADS and TOYWASM_ENABLE_WASI_THREADS
|
|
|
|
# depends on pthread
|
|
|
|
# REVISIT: make these Kconfig
|
|
|
|
depends on !DISABLE_PTHREAD
|
|
|
|
|
2022-10-19 16:08:57 +02:00
|
|
|
if INTERPRETERS_TOYWASM
|
|
|
|
|
|
|
|
config INTERPRETERS_TOYWASM_PRIORITY
|
|
|
|
int "Toywasm cli priority"
|
|
|
|
default 100
|
|
|
|
|
|
|
|
config INTERPRETERS_TOYWASM_STACKSIZE
|
|
|
|
int "Toywasm cil stack size"
|
|
|
|
default DEFAULT_TASK_STACKSIZE
|
|
|
|
|
|
|
|
endif
|