2020-08-17 15:15: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_QUICKJS
|
|
|
|
tristate "QuickJS JavaScript interpreter"
|
|
|
|
default n
|
|
|
|
|
|
|
|
if INTERPRETERS_QUICKJS
|
|
|
|
|
2021-03-15 11:56:18 +01:00
|
|
|
config INTERPRETERS_QUICKJS_MINI
|
|
|
|
bool "Minimal interpreter"
|
|
|
|
default n
|
|
|
|
|
2020-08-17 15:15:57 +02:00
|
|
|
config INTERPRETERS_QUICKJS_BIGNUM
|
|
|
|
bool "Bignum support"
|
2021-03-12 10:10:54 +01:00
|
|
|
default n
|
|
|
|
---help---
|
|
|
|
It's depend on libatomic,
|
|
|
|
Not all platform support it.
|
2020-08-17 15:15:57 +02:00
|
|
|
|
|
|
|
config INTERPRETERS_QUICKJS_PRIORITY
|
|
|
|
int "QuickJS interpreter priority"
|
|
|
|
default 100
|
|
|
|
|
|
|
|
config INTERPRETERS_QUICKJS_STACKSIZE
|
|
|
|
int "QuickJS interpreter stack size"
|
|
|
|
default 8192
|
|
|
|
|
2021-03-15 11:56:18 +01:00
|
|
|
config INTERPRETERS_QUICKJS_EXT_HOOK
|
|
|
|
bool "External init/destory hook"
|
|
|
|
default n
|
|
|
|
depends on INTERPRETERS_QUICKJS_MINI
|
|
|
|
---help---
|
|
|
|
Since minimal interpreter only support 'console.log',
|
|
|
|
you can export custom module by implement init/destory hook.
|
|
|
|
|
2020-08-17 15:15:57 +02:00
|
|
|
endif
|