Release D 2.069.0

Jack Stouffer via Digitalmars-d-announce digitalmars-d-announce at puremagic.com
Sun Nov 8 15:25:54 PST 2015


On Sunday, 8 November 2015 at 22:45:05 UTC, Daniel Murphy wrote:
> Actually I think it's fixed now, just disabled.
>
> It used to have problems with lib*/scan*, but those are in D 
> now, and most of the allocations from the glue layer are being 
> forwarded to the GC through rmem.
>
> If anyone wants to try it they just need to add -version=GC to 
> the DMD build flags and insert this function in root/rmem.d's 
> version(GC) block.
>
>
>     extern (C) void* allocmemory(size_t m_size)
>     {
>         return GC.malloc(m_size);
>     }

Is there any reason why this isn't currently used in the front 
end?


More information about the Digitalmars-d-announce mailing list