Re: libdl issues with DUB

2013-12-17 Thread Flamaros
On Tuesday, 17 December 2013 at 17:05:36 UTC, yazd wrote: On Tuesday, 17 December 2013 at 12:41:16 UTC, Flamaros wrote: When I build our project with DUB under linux I get some link errors about libdl, that is messing. In my main I have the following lines : version(Posix) { pragma(lib, "dl

Re: libdl issues with DUB

2013-12-17 Thread yazd
On Tuesday, 17 December 2013 at 12:41:16 UTC, Flamaros wrote: When I build our project with DUB under linux I get some link errors about libdl, that is messing. In my main I have the following lines : version(Posix) { pragma(lib, "dl"); } This works well with MonoD, so it seems like versio

Re: libdl issues with DUB

2013-12-17 Thread Marco Leise
Am Tue, 17 Dec 2013 13:41:14 +0100 schrieb "Flamaros" : > When I build our project with DUB under linux I get some link > errors about libdl, that is messing. > In my main I have the following lines : > > version(Posix) > { > pragma(lib, "dl"); > } > > This works well with MonoD, so it see

libdl issues with DUB

2013-12-17 Thread Flamaros
When I build our project with DUB under linux I get some link errors about libdl, that is messing. In my main I have the following lines : version(Posix) { pragma(lib, "dl"); } This works well with MonoD, so it seems like version Posix isn't defined with DUB or pragma ignored.