From: Arnout Vandecappelle <arnout@mind.be>
To: buildroot@busybox.net
Subject: [Buildroot] [PATCH v2 2/4] bdwgc: new package
Date: Mon, 03 Nov 2014 22:24:52 +0100 [thread overview]
Message-ID: <5457F2A4.4080708@mind.be> (raw)
In-Reply-To: <1414974851-4819-3-git-send-email-paguilar@paguilar.org>
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?
> 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?
> +BDWGC_LIBTOOL_PATCH = NO
There should be a comment explaining why this is necessary.
Regards,
Arnout
> +
> +BDWGC_DEPENDENCIES = host-bdwgc libatomic_ops
> +
> +$(eval $(autotools-package))
> +$(eval $(host-autotools-package))
> +
>
--
Arnout Vandecappelle arnout at mind be
Senior Embedded Software Architect +32-16-286500
Essensium/Mind http://www.mind.be
G.Geenslaan 9, 3001 Leuven, Belgium BE 872 984 063 RPR Leuven
LinkedIn profile: http://www.linkedin.com/in/arnoutvandecappelle
GPG fingerprint: 7CB5 E4CC 6C2E EFD4 6E3D A754 F963 ECAB 2450 2F1F
next prev parent reply other threads:[~2014-11-03 21:24 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 [this message]
2014-11-04 0:14 ` Pedro Aguilar
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=5457F2A4.4080708@mind.be \
--to=arnout@mind.be \
--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.