2020-11-06 23:51:14 +01:00
|
|
|
config BR2_PACKAGE_QUICKJS
|
|
|
|
bool "quickjs"
|
2021-04-14 23:26:08 +02:00
|
|
|
depends on !BR2_nios2 # fenv.h lacks FE_{DOWN,UP}WARD on nios2
|
2020-11-06 23:51:14 +01:00
|
|
|
depends on !BR2_STATIC_LIBS
|
|
|
|
# No way to check for fenv support.
|
|
|
|
depends on !BR2_TOOLCHAIN_USES_UCLIBC
|
2020-12-06 07:39:26 +01:00
|
|
|
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # C11/stdatomic.h
|
2021-01-03 21:19:58 +01:00
|
|
|
depends on BR2_HOST_GCC_AT_LEAST_4_9 # C11/stdatomic.h
|
2020-11-06 23:51:14 +01:00
|
|
|
depends on BR2_USE_MMU # fork()
|
|
|
|
help
|
|
|
|
QuickJS is a small and embeddable Javascript engine.
|
|
|
|
It supports the ES2020 specification including modules,
|
|
|
|
asynchronous generators, proxies and BigInt.
|
|
|
|
|
|
|
|
https://bellard.org/quickjs/
|
|
|
|
|
2021-01-03 21:19:58 +01:00
|
|
|
comment "quickjs needs a glibc or musl toolchain w/ gcc >= 4.9, host gcc >= 4.9, dynamic library"
|
2021-04-14 23:26:08 +02:00
|
|
|
depends on !BR2_nios2
|
2020-11-06 23:51:14 +01:00
|
|
|
depends on BR2_USE_MMU
|
2021-01-03 21:19:58 +01:00
|
|
|
depends on BR2_STATIC_LIBS || BR2_TOOLCHAIN_USES_UCLIBC || \
|
|
|
|
!BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 || !BR2_HOST_GCC_AT_LEAST_4_9
|