summaryrefslogtreecommitdiffstats
path: root/package/bdwgc
Commit message (Collapse)AuthorAgeFilesLines
* bdwgc: add explicit dependencies for host variantJulien Floret2016-07-031-0/+1
| | | | | Signed-off-by: Julien Floret <julien.floret@6wind.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/libatomic_ops: rename libatomic_ops supported arch Kconfig symbolRomain Naour2016-02-071-1/+1
| | | | | | | | | | | | According to the discussion on the mailing-list [1], rename the libatomic_ops supported architectures Kconfig symbol. [1] http://lists.busybox.net/pipermail/buildroot/2016-February/152146.html Signed-off-by: Romain Naour <romain.naour@gmail.com> Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Cc: Frank Hunleth <fhunleth@troodon-software.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* bdwgc: fix compile for sparcWaldemar Brodkorb2015-12-042-0/+427
| | | | | | | | | | | | We need to use a patch from master git. https://github.com/ivmai/bdwgc/commit/e2bf29b7801357c1ad28c2948a3f88c655dd722a Fixes following autobuilder failures: http://autobuild.buildroot.net/results/220b3d49b8ad891e5dd3aae759319100a1500701/ http://autobuild.buildroot.net/results/b7465d175f03c9461693a92885028723772c7814/ Signed-off-by: Waldemar Brodkorb <wbx@openadk.org> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package/bdwgc: musl build failureBrendan Heading2015-08-061-0/+61
| | | | | | | | | Fixes http://autobuild.buildroot.net/results/1ed/1edb5e7dab88d3fefca533ab56f7ddc7dd5411d2/ Upstream removed unused code which was causing musl compilation issues. Signed-off-by: Brendan Heading <brendanheading@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* bdwgc: fix static buildBaruch Siach2015-03-021-1/+6
| | | | | | | | | | | | Fixes: http://autobuild.buildroot.net/results/6d3/6d3f73f7b5e4e7bd1293aae9b626f38ac456b6c4/ http://autobuild.buildroot.net/results/1ba/1ba511c629f724eee8b75b9b34fe8db154b3cfe1/ http://autobuild.buildroot.net/results/a54/a54cc1bdc5dcb4c459cfbcae3368811e2170d100/ and more. Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* bdwgc: bump to version 7.4.2Baruch Siach2015-02-273-11/+3
| | | | | | | | | | | | The code in gcconfig.h indicates that the list of supported architectures is now a superset of BR2_PACKAGE_LIBATOMIC_ARCH_SUPPORTS so we can drop BR2_PACKAGE_BDWGC_ARCH_SUPPORTS. Also, add a hash file. Cc: Pedro Aguilar <paguilar@paguilar.org> Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* packages: all salute the passing of avr32Yann E. MORIN2015-02-141-1/+1
| | | | | Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* bdwgc: add patch automatically detecting for NO_GETCONTEXT needSamuel Martin2014-12-261-0/+28
| | | | | | | | | | | | This patch is necessary to successfully build guile with toolchain missing support for getcontext. Signed-off-by: Samuel Martin <s.martin49@gmail.com> [yann.morin.1998@free.fr: add a comment, change variable name, use AS_IF, remove debug traces, use AC_CHECK_FUNCS (Thomas)] Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr> Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* bdwgc: fix _ARCH_SUPPORTS kconfig warningPeter Korsgaard2014-12-031-0/+1
| | | | | | | | We have to define it as a bool, otherwise kconfig complains with: package/bdwgc/Config.in:1:warning: config symbol defined without type Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package/bdwgc: only enable on supported architecturesYann E. MORIN2014-12-022-0/+9
| | | | | | | | | | | | | | | | | | | | | | | 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>
* bdwgc: Add new packagePedro Aguilar2014-11-262-0/+36
bdwgc is a garbage collector for C and C++. The Boehm-Demers-Weiser conservative garbage collector can be used as a garbage collecting replacement for C 'malloc' or C++ 'new'. [Thomas: - drop the dependency on host-bdwgc, since it is not needed. Only host-guile will need host-bdwgc, but bdwgc itself doesn't need host-bdwgc. - add dependency on host-pkgconf, needed to detect libatomic_ops - add --with-libatomic-ops=yes to force bdwgc to use the system libatomic_ops, and not the internal one. - instead of using BDWGC_LIBTOOL_PATCH = NO (needed to avoid patching libtool because the libtool version used by bdwgc does not have a corresponding patch in Buildroot), use BDWGC_AUTORECONF = YES, which generates a proper libtool (without this, some -L/usr/lib flags are added by libtool).] Signed-off-by: Pedro Aguilar <paguilar@paguilar.org> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
OpenPOWER on IntegriCloud