I had some problems linking it in linux(particulary ubuntu, but can affect
other distros).
The reason:
The pragma doesn't is configured to the location of the lua library.
Solution:
modify:
version(linux) pragma(lib, "lua/lua.lib");
To the location on your machine(relative to /usr/lib) Ej(on my case):
version(linux) pragma(lib, "lua5.1.so.0");Regards g ----------------------- [sorry for my English]
