mirror of
https://github.com/apache/nuttx-apps.git
synced 2026-08-27 04:10:47 +00:00
25 lines
500 B
Text
25 lines
500 B
Text
|
|
#
|
||
|
|
# 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
|
||
|
|
|
||
|
|
config INTERPRETERS_QUICKJS_BIGNUM
|
||
|
|
bool "Bignum support"
|
||
|
|
default false
|
||
|
|
|
||
|
|
config INTERPRETERS_QUICKJS_PRIORITY
|
||
|
|
int "QuickJS interpreter priority"
|
||
|
|
default 100
|
||
|
|
|
||
|
|
config INTERPRETERS_QUICKJS_STACKSIZE
|
||
|
|
int "QuickJS interpreter stack size"
|
||
|
|
default 8192
|
||
|
|
|
||
|
|
endif
|