e5ac570e13
bdwgc has support for a sub-set of the architectures we support. Since there is roughly a 50-50 split of our architectures that have support in bdwgc vs. those that do not, use a positive dependency logic, rather than a negative one. The list was constructed by visual inspection of the source code of bdwgc, but the header doing the check is, to say it politely, a bit difficult to read... So, some working archotectures may be missing. Users needing it may investigate if their architectures are indeed supported. Fixes; http://autobuild.buildroot.net/results/529/529b0b6dd47744c13f56e59a4c669a3f5d56530d/ Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Cc: Pedro Aguilar <paguilar@paguilar.org> Cc: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
29 lines
1002 B
Makefile
29 lines
1002 B
Makefile
################################################################################
|
|
#
|
|
# bdwgc
|
|
#
|
|
################################################################################
|
|
|
|
# When bumping the version number, check if the list of supported architectures
|
|
# is still valid; see Config.log.
|
|
BDWGC_VERSION = 7.2f
|
|
BDWGC_SOURCE = gc-$(BDWGC_VERSION).tar.gz
|
|
BDWGC_SITE = http://www.hboehm.info/gc/gc_source
|
|
BDWGC_INSTALL_STAGING = YES
|
|
BDWGC_LICENSE = bdwgc license
|
|
BDWGC_LICENSE_FILES = README.QUICK
|
|
BDWGC_DEPENDENCIES = libatomic_ops host-pkgconf
|
|
|
|
# The libtool shipped with the package is bogus and generates some
|
|
# -L/usr/lib flags. It uses a version not supported by Buildroot
|
|
# libtool patches, so autoreconfiguring the packages is the easiest
|
|
# solution.
|
|
BDWGC_AUTORECONF = YES
|
|
|
|
# Ensure we use the system libatomic_ops, and not the internal one.
|
|
BDWGC_CONF_OPTS = --with-libatomic-ops=yes
|
|
HOST_BDWGC_CONF_OPTS = --with-libatomic-ops=yes
|
|
|
|
$(eval $(autotools-package))
|
|
$(eval $(host-autotools-package))
|