nuttx-apps/interpreters/wasm3/Kconfig
simbit18 e501f784c3 Fix Kconfig style
Add TABs
Add comments
2023-08-11 22:13:17 +08:00

43 lines
862 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_WASM3
tristate "WASM3 Webassembly Runtime"
default n
if INTERPRETERS_WASM3
config INTERPRETERS_WASM3_PRIORITY
int "WASM3 Webassembly priority"
default 100
config INTERPRETERS_WASM3_STACKSIZE
int "WASM3 Webassembly stack size"
default DEFAULT_TASK_STACKSIZE
config INTERPRETERS_WASM3_CODEPAGE
int "WASM3 code page align size"
default 512
config INTERPRETERS_WASM3_FIXEDHEAP
int "WASM3 Fixed heap size"
default 0
---help---
0 : Use malloc/free instead of internal heap
config INTERPRETERS_WASM3_LOG
bool "WASM3 log"
default n
if INTERPRETERS_WASM3_LOG
config INTERPRETERS_WASM3_LOG_VERBOSE
bool "WASM3 log verbose"
default n
endif # INTERPRETERS_WASM3_LOG
endif # INTERPRETERS_WASM3