mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-02 05:33:57 -09:00
fixes this serie of CVE: https://security-tracker.debian.org/tracker/CVE-2025-62490 https://security-tracker.debian.org/tracker/CVE-2025-62491 https://security-tracker.debian.org/tracker/CVE-2025-62492 https://security-tracker.debian.org/tracker/CVE-2025-62493 https://security-tracker.debian.org/tracker/CVE-2025-62494 https://security-tracker.debian.org/tracker/CVE-2025-62495 https://security-tracker.debian.org/tracker/CVE-2025-62496 For release notes, see: https://bellard.org/quickjs/Changelog Signed-off-by: Francois Perrad <francois.perrad@gadz.org> Signed-off-by: Julien Olivain <ju.o@free.fr>
24 lines
909 B
Plaintext
24 lines
909 B
Plaintext
config BR2_PACKAGE_QUICKJS
|
|
bool "quickjs"
|
|
depends on !BR2_microblaze # fenv.h lacks FE_{DOWN,UP}WARD
|
|
depends on !BR2_sh # fenv.h lacks FE_{DOWN,UP}WARD
|
|
depends on !BR2_STATIC_LIBS
|
|
# No way to check for fenv support.
|
|
depends on !BR2_TOOLCHAIN_USES_UCLIBC
|
|
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # C11/stdatomic.h
|
|
depends on BR2_HOST_GCC_AT_LEAST_4_9 # C11/stdatomic.h
|
|
depends on BR2_USE_MMU # fork()
|
|
help
|
|
QuickJS is a small and embeddable Javascript engine.
|
|
It supports the ES2023 specification including modules,
|
|
asynchronous generators, proxies and BigInt.
|
|
|
|
https://bellard.org/quickjs/
|
|
|
|
comment "quickjs needs a glibc or musl toolchain w/ gcc >= 4.9, host gcc >= 4.9, dynamic library"
|
|
depends on !BR2_microblaze
|
|
depends on !BR2_sh
|
|
depends on BR2_USE_MMU
|
|
depends on BR2_STATIC_LIBS || BR2_TOOLCHAIN_USES_UCLIBC || \
|
|
!BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 || !BR2_HOST_GCC_AT_LEAST_4_9
|