mirror of
https://github.com/jerryscript-project/jerryscript.git
synced 2025-12-15 16:29:21 +00:00
Modified the Makefile of the NuttX target to build only the application file (targets/nuttx-stm32f4/jerry-main.c) and not the whole project. It helps to build JerryScript separately and use the static libs when building NuttX. Also modified the README.md to describe the new build process. JerryScript-DCO-1.0-Signed-off-by: Roland Takacs rtakacs.uszeged@partner.samsung.com
31 lines
630 B
Plaintext
31 lines
630 B
Plaintext
#
|
|
# For a description of the syntax of this configuration file,
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
|
#
|
|
|
|
config JERRYSCRIPT
|
|
bool "Jerryscript"
|
|
default n
|
|
---help---
|
|
Enable Jerryscript ECMAScript 5.1 interpreter
|
|
|
|
if JERRYSCRIPT
|
|
|
|
config JERRYSCRIPT_PROGNAME
|
|
string "Program name"
|
|
default "jerry"
|
|
depends on BUILD_KERNEL
|
|
---help---
|
|
This is the name of the program that will be
|
|
use when the NSH ELF program is installed.
|
|
|
|
config JERRYSCRIPT_PRIORITY
|
|
int "Jerryscript task priority"
|
|
default 100
|
|
|
|
config JERRYSCRIPT_STACKSIZE
|
|
int "Jerryscript stack size"
|
|
default 16384
|
|
|
|
endif # JERRYSCRIPT
|