March 01, 2012
Hi,

libgc-d is a binding to the libgc garbage collection library (also known as the Boehm-Demers-Weiser GC). This library is primarily useful in the D world for programming language implementations and virtual machines, as D has a built-in GC (though, nothing stops you from using libgc-d for your normal allocations).

https://github.com/lycus/libgc-d

It's still very much alpha quality. I've only done some small, silly tests, but everything *seems* to work. See README.md for limitations, build instructions, etc.

Note also that this binding is just that - a binding. It doesn't provide any high-level wrappers around libgc.

Feedback welcome. :)

-- 
- Alex