From: Pedro Aguilar <paguilar@paguilar.org>
To: buildroot@busybox.net
Subject: [Buildroot] [PATCH v2 2/4] bdwgc: new package
Date: Tue, 04 Nov 2014 01:14:24 +0100 [thread overview]
Message-ID: <54581A60.8010207@paguilar.org> (raw)
In-Reply-To: <5457F2A4.4080708@mind.be>
Hi Arnout,
On 03/11/2014 22:24, Arnout Vandecappelle wrote:
> On 03/11/14 01:34, Pedro Aguilar wrote:
>> 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'.
>>
>> Signed-off-by: Pedro Aguilar <paguilar@paguilar.org>
>>
>> ---
>> Changes v1 -> v2
>> - Add external default dependency on libatomic_ops
>> - Fix several formatting issues
>> (All changes suggested by Yann Morin)
>>
>> Signed-off-by: Pedro Aguilar <paguilar@paguilar.org>
>> ---
>> package/Config.in | 1 +
>> package/bdwgc/Config.in | 11 +++++++++++
>> package/bdwgc/bdwgc.mk | 19 +++++++++++++++++++
>> 3 files changed, 31 insertions(+)
>> create mode 100644 package/bdwgc/Config.in
>> create mode 100644 package/bdwgc/bdwgc.mk
>>
>> diff --git a/package/Config.in b/package/Config.in
>> index 3b3c372..bb158b4 100644
>> --- a/package/Config.in
>> +++ b/package/Config.in
>> @@ -942,6 +942,7 @@ endmenu
>> menu "Miscellaneous"
>> source "package/aespipe/Config.in"
>> source "package/bc/Config.in"
>> + source "package/bdwgc/Config.in"
>
> This is a library, right? So doesn't it belong under Libraries/Other rather
> than here?
Right, I'll change it.
>> source "package/clamav/Config.in"
>> source "package/collectd/Config.in"
>> source "package/empty/Config.in"
>> diff --git a/package/bdwgc/Config.in b/package/bdwgc/Config.in
>> new file mode 100644
>> index 0000000..6f3878e
>> --- /dev/null
>> +++ b/package/bdwgc/Config.in
>> @@ -0,0 +1,11 @@
>> +config BR2_PACKAGE_BDWGC
>> + bool "bdwgc"
>> + depends on BR2_PACKAGE_LIBATOMIC_ARCH_SUPPORTS
>> + select BR2_PACKAGE_LIBATOMIC_OPS
>> + help
>> + The Boehm-Demers-Weiser conservative garbage collector can
>> + be used as a garbage collecting replacement for C 'malloc'
>> + or C++ 'new'.
>> +
>> + http://www.hboehm.info/gc/
>> +
>> diff --git a/package/bdwgc/bdwgc.mk b/package/bdwgc/bdwgc.mk
>> new file mode 100644
>> index 0000000..a687cc2
>> --- /dev/null
>> +++ b/package/bdwgc/bdwgc.mk
>> @@ -0,0 +1,19 @@
>> +################################################################################
>> +#
>> +# bdwgc
>> +#
>> +################################################################################
>> +
>> +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
>
> Does the readme contain all the information of that license mess or are there
> additional files?
No, it's only this file.
>> +BDWGC_LIBTOOL_PATCH = NO
>
> There should be a comment explaining why this is necessary.
I had a building issue. I'll comment it in the following patch set.
Thanks for the feedback.
--
Pedro Aguilar
http://paguilar.org
next prev parent reply other threads:[~2014-11-04 0:14 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-11-03 0:34 [Buildroot] [PATCH v2 0/4] package/guile: New package Pedro Aguilar
2014-11-03 0:34 ` [Buildroot] [PATCH v2 1/4] libatomic_ops: Add host-autotools-package Pedro Aguilar
2014-11-03 0:34 ` [Buildroot] [PATCH v2 2/4] bdwgc: new package Pedro Aguilar
2014-11-03 21:24 ` Arnout Vandecappelle
2014-11-04 0:14 ` Pedro Aguilar [this message]
2014-11-03 0:34 ` [Buildroot] [PATCH v2 3/4] libunistring: Add host-autotools-package Pedro Aguilar
2014-11-03 0:34 ` [Buildroot] [PATCH v2 4/4] guile: new package Pedro Aguilar
2014-11-03 7:29 ` Thomas Petazzoni
2014-11-04 0:04 ` Pedro Aguilar
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=54581A60.8010207@paguilar.org \
--to=paguilar@paguilar.org \
--cc=buildroot@busybox.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.