An open API service indexing awesome lists of open source software.

https://github.com/inochi2d/nurt

Minimal GC-less D runtime.
https://github.com/inochi2d/nurt

Last synced: 4 months ago
JSON representation

Minimal GC-less D runtime.

Awesome Lists containing this project

README

          

# NuRT

A minimal D runtime using numem, built around using numem and nulib for memory managment.
If you need higher level constructs, see [nulib](https://github.com/Inochi2D/nulib)

Having a smaller custom runtime serves the Inochi2D project by being more portable,
and additionally making it easier to link to the Inochi2D SDK.

NuRT has no garbage collector, and never will have one. Numem's lifetime capabilities
are automatically imported; additionally you *may* use `core.attribute` from druntime;
as the dub package prevents it from linking in. Any usage of druntime which generates
code however, is not supported.

## Known issues
* Exceptions have not been implemented yet, application will immediately crash on exception or assert.