Jon via Digitalmars-d-learn <digitalmars-d-learn@puremagic.com> writes:

> So that does indeed solve some of the problems.  However, using this
> method, when linking I get two errors, undefined reference rt_init()
> and rt_term() I had just put these methods in the header file.  If I
> put wrappers around these functions and export I get the rt_init,
> rt_term is private.
>

rt_init is part of druntime. You need to link druntime into your program
in order to make it work.

Reply via email to