gtkd

Jarrod qwerty at ytre.wq
Sat Jan 5 16:29:53 PST 2008


On Sat, 05 Jan 2008 18:59:45 -0500, llee wrote:

> I created a new directory containing the example program and a dsss
> config file. The config file contained the line that you gave me. When I
> executed dsss build, the compiler threw a number of undefined reference
> errors. I'm pretty sure that the program needs to be linked against a
> library to compile. Unfortunately I don't names or locations of these
> libraries.

So you built and installed gtkd with dsss?
That should take care of most imports, but you still need to link against 
libdl
Put this in your source file:

version (build) {
     pragma(link, "dl");
}

that should hopefully fix the linker issue.



More information about the Digitalmars-d mailing list