You are not logged in.
Pages: 1
Apperantly ld doesn't search in the /usr/X11R6/lib directory. I'm not sure why, seeing as /usr/X11...lib is listed in /etc/ld.so.conf .
To see what I mean, try this:
ld -lXcursor
It will most likely return that it can't find Xcursor (which is in /usr/X...lib). Now try
ld -lfreetype
and it should return something else. libfreetype.so is in /usr/lib and gets found correctly.
Obviously something isn't right here, but I can't put my finger on what causes the problem. Any help would be greatly appreciated.
·¬»· i am shadowhand, powered by webfaction
Offline
ld -L/usr/X11R6/lib -lXcursor
Offline
Thanks! Got it working. Is there any reason why ld doesn't automatically look there?
·¬»· i am shadowhand, powered by webfaction
Offline
Pages: 1