2014-11-24 23:56:28 +01:00
|
|
|
################################################################################
|
|
|
|
#
|
|
|
|
# bdwgc
|
|
|
|
#
|
|
|
|
################################################################################
|
|
|
|
|
2023-08-08 17:11:03 +02:00
|
|
|
BDWGC_VERSION = 8.2.4
|
2014-11-24 23:56:28 +01:00
|
|
|
BDWGC_SOURCE = gc-$(BDWGC_VERSION).tar.gz
|
2021-11-14 14:34:36 +01:00
|
|
|
BDWGC_SITE = https://github.com/ivmai/bdwgc/releases/download/v$(BDWGC_VERSION)
|
2014-11-24 23:56:28 +01:00
|
|
|
BDWGC_INSTALL_STAGING = YES
|
|
|
|
BDWGC_LICENSE = bdwgc license
|
|
|
|
BDWGC_LICENSE_FILES = README.QUICK
|
package: switch to _CPE_ID_VALID
Now that we document _CPE_ID_VALID, and that it shall be used instead of
setting a default value to one of the other _CPE_ID_* variables, change
all of the existing packages to use it, to avoid any error when we later
extend check-package to validate the sanity ofthe _CPE_ID_* variables.
Mechanical change done within the reference container, running the new
check in check-package, to report the CPE_ID errors:
$ make check-package 2>/dev/null \
|awk '{
split($(1), a, ":"); fname = a[1]
split($(2), a, "'\''"); val = a[2]
new_var = $(8); gsub("_CPE_ID_.*", "_CPE_ID_VALID", new_var)
printf("%s %s %s %s\n", fname, $(8), val, new_var)
}' \
|while read fname var val new_var; do
sed -r -i -e "s/${var}[[:space:]]*=[[:space:]]*${val}/${new_var} = YES/" "${fname}"
done
$ git diff -I'CPE_ID_(VENDOR|VALID)'
[empty]
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
Cc: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2024-02-10 22:24:58 +01:00
|
|
|
BDWGC_CPE_ID_VALID = YES
|
2014-11-24 23:56:28 +01:00
|
|
|
BDWGC_DEPENDENCIES = libatomic_ops host-pkgconf
|
2016-07-03 00:20:32 +02:00
|
|
|
HOST_BDWGC_DEPENDENCIES = host-libatomic_ops host-pkgconf
|
2014-11-24 23:56:28 +01:00
|
|
|
|
2018-10-25 21:13:16 +02:00
|
|
|
BDWGC_CONF_OPTS = CFLAGS_EXTRA="$(BDWGC_CFLAGS_EXTRA)"
|
2015-12-04 06:33:11 +01:00
|
|
|
ifeq ($(BR2_sparc),y)
|
2018-10-25 21:13:16 +02:00
|
|
|
BDWGC_CFLAGS_EXTRA += -DAO_NO_SPARC_V9
|
2015-12-04 06:33:11 +01:00
|
|
|
endif
|
2015-03-02 12:53:53 +01:00
|
|
|
ifeq ($(BR2_STATIC_LIBS),y)
|
2018-10-25 21:13:16 +02:00
|
|
|
BDWGC_CFLAGS_EXTRA += -DGC_NO_DLOPEN
|
2015-03-02 12:53:53 +01:00
|
|
|
endif
|
2022-06-26 12:06:17 +02:00
|
|
|
ifeq ($(BR2_TOOLCHAIN_HAS_THREADS_NPTL),)
|
|
|
|
BDWGC_CFLAGS_EXTRA += -DNO_PTHREAD_GETATTR_NP
|
|
|
|
endif
|
2015-03-02 12:53:53 +01:00
|
|
|
|
2014-11-24 23:56:28 +01:00
|
|
|
# Ensure we use the system libatomic_ops, and not the internal one.
|
2018-10-25 21:13:16 +02:00
|
|
|
BDWGC_CONF_OPTS += --with-libatomic-ops=yes
|
2014-11-24 23:56:28 +01:00
|
|
|
HOST_BDWGC_CONF_OPTS = --with-libatomic-ops=yes
|
|
|
|
|
2018-10-25 21:13:16 +02:00
|
|
|
ifeq ($(BR2_INSTALL_LIBSTDCPP),y)
|
|
|
|
BDWGC_CONF_OPTS += --enable-cplusplus
|
|
|
|
else
|
|
|
|
BDWGC_CONF_OPTS += --disable-cplusplus
|
|
|
|
endif
|
|
|
|
|
2014-11-24 23:56:28 +01:00
|
|
|
$(eval $(autotools-package))
|
|
|
|
$(eval $(host-autotools-package))
|