On 21 May 2013 04:58, Samms <mate...@gmail.com> wrote: > Hooray! :) > > gdc ./main.d /usr/include/d2/4.6/std/c/linux/X11/Xlib.d -o Refuja > -L-L/usr/include/X11/ -L-lXlib -lX11
Though why on earth are you still using -L-L and -L-l ? -Ldir Add directory dir to the list of directories to be searched for -l. All you are doing is adding '-L/usr/include/X11/' and '-lXlib' as search directories (hint: they very likely don't exist). Regards -- Iain Buclaw *(p < e ? p++ : p) = (c & 0x0f) + '0';