June 11, 2012
http://blog.lycus.org/2012/06/libgc-d-version-11-released.html

As with libffi-d, version 1.0 was never announced here due to letting the library mature a bit first. It should now be ready for actual use (we use it in our virtual machine in Lycus).

libgc-d is pretty much just a binding; no fancy wrappers exist here. The only actual D code in libgc-d consists of the new pointer reachability and hiding helpers.

The blog post only lists changes since 1.0. Here are the actual changes since I first announced the project's existence:

* Support for libgc's typed GC API.
* Support for building with D 2.0 versions of the GDC compiler.
* Support for building with D 2.0 versions of the LDC compiler.
* New Waf-based build system.
* GC initialization fixes in the test suite.
* Added a helper function for marking pointer reachability.
* Added helper functions to hide/reveal pointers for disappearing links.

Note that the library has not been tested on Windows and has no build system in place for that platform either. We may look into this later if we decide that Windows support is something we care about. But patches welcome, of course! ;)

If you encounter any issues with the library, please open an issue on the GitHub issue tracker.

Enjoy!

-- 
Alex Rønne Petersen
alex@lycus.org
http://lycus.org
June 12, 2012
Le lundi 11 juin 2012 à 12:22 +0200, Alex Rønne Petersen a écrit :
> http://blog.lycus.org/2012/06/libgc-d-version-11-released.html
> 
> As with libffi-d, version 1.0 was never announced here due to letting the library mature a bit first. It should now be ready for actual use (we use it in our virtual machine in Lycus).
> 
> libgc-d is pretty much just a binding; no fancy wrappers exist here. The only actual D code in libgc-d consists of the new pointer reachability and hiding helpers.
> 
> The blog post only lists changes since 1.0. Here are the actual changes since I first announced the project's existence:
> 
> * Support for libgc's typed GC API.
> * Support for building with D 2.0 versions of the GDC compiler.
> * Support for building with D 2.0 versions of the LDC compiler.
> * New Waf-based build system.
> * GC initialization fixes in the test suite.
> * Added a helper function for marking pointer reachability.
> * Added helper functions to hide/reveal pointers for disappearing links.
> 
> Note that the library has not been tested on Windows and has no build system in place for that platform either. We may look into this later if we decide that Windows support is something we care about. But patches welcome, of course! ;)
> 
> If you encounter any issues with the library, please open an issue on the GitHub issue tracker.
> 
> Enjoy!
> 

great i will try to package it soon for fedora
thanks for your work