bdwgc 7.4.2
Name | bdwgc |
---|---|
Version | 7.4.2 |
Summary | A garbage collector for C and C++ |
Description | The Boehm-Demers-Weiser conservative garbage collector can be used as a garbage collecting replacement for C malloc or C++ new. It allows you to allocate memory basically as you normally would, without explicitly deallocating memory that is no longer useful. The collector automatically recycles memory when it determines that it can no longer be otherwise accessed. The collector is also used by a number of programming language implementations that either use C as intermediate code, want to facilitate easier interoperation with C libraries, or just prefer the simple collector interface. Alternatively, the garbage collector may be used as a leak detector for C or C++ programs, though that is not its primary goal. Empirically, this collector works with most unmodified C programs, simply by replacing malloc with GC_malloc calls, replacing realloc with GC_realloc calls, and removing free calls. |
Section | devel |
License | MIT |
Homepage | http://www.hboehm.info/gc/ |
Recipe file |
recipes-support/bdwgc/bdwgc_7.4.2.bb
recipes-support/bdwgc/classes/autotools.bbclass recipes-support/bdwgc/classes/pkgconfig.bbclass |
Layer | openembedded-core (dizzy branch) |
Inherits |
|
Dependencies | |
PACKAGECONFIG options |
Sources
None
Patches
None
Other branches
This recipe in other branches of openembedded-core:
Branch | Recipe |
---|---|
pyro (Yocto Project 2.3) | bdwgc 7.6.0 |
morty (Yocto Project 2.2) | bdwgc 7.6.0 |
krogoth (Yocto Project 2.1) | bdwgc 7.4.2 |
jethro (Yocto Project 2.0) | bdwgc 7.4.2 |
fido (Yocto Project 1.8) | bdwgc 7.4.2 |
dizzy (Yocto Project 1.7) | bdwgc 7.4.2 (this recipe) |
daisy (Yocto Project 1.6) | bdwgc 7.2d |
dora (Yocto Project 1.5) | bdwgc 7.2d |
dylan (Yocto Project 1.4) | bdwgc 7.2 |
danny (Yocto Project 1.3) | bdwgc 20110107 |