mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-01 21:23:51 -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>
47 lines
1.1 KiB
Makefile
47 lines
1.1 KiB
Makefile
################################################################################
|
|
#
|
|
# quickjs
|
|
#
|
|
################################################################################
|
|
|
|
QUICKJS_VERSION = 2025-09-13
|
|
QUICKJS_SOURCE = quickjs-$(QUICKJS_VERSION).tar.xz
|
|
QUICKJS_SITE = https://bellard.org/quickjs
|
|
QUICKJS_LICENSE = MIT
|
|
QUICKJS_LICENSE_FILES = LICENSE
|
|
QUICKJS_CPE_ID_VALID = YES
|
|
QUICKJS_INSTALL_STAGING = YES
|
|
|
|
ifeq ($(BR2_TOOLCHAIN_HAS_LIBATOMIC),y)
|
|
QUICKJS_EXTRA_LIBS += -latomic
|
|
endif
|
|
|
|
define QUICKJS_BUILD_CMDS
|
|
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D) \
|
|
CROSS_PREFIX="$(TARGET_CROSS)" \
|
|
EXTRA_LIBS="$(QUICKJS_EXTRA_LIBS)" \
|
|
all
|
|
endef
|
|
|
|
define QUICKJS_INSTALL_STAGING_CMDS
|
|
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D) \
|
|
CROSS_PREFIX="$(TARGET_CROSS)" \
|
|
EXTRA_LIBS="$(QUICKJS_EXTRA_LIBS)" \
|
|
DESTDIR=$(STAGING_DIR) \
|
|
STRIP=/bin/true \
|
|
PREFIX=/usr \
|
|
install
|
|
endef
|
|
|
|
define QUICKJS_INSTALL_TARGET_CMDS
|
|
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D) \
|
|
CROSS_PREFIX="$(TARGET_CROSS)" \
|
|
EXTRA_LIBS="$(QUICKJS_EXTRA_LIBS)" \
|
|
DESTDIR=$(TARGET_DIR) \
|
|
STRIP=/bin/true \
|
|
PREFIX=/usr \
|
|
install
|
|
endef
|
|
|
|
$(eval $(generic-package))
|