On 2012-02-10 13:40, Per Öberg wrote: > 1) Why oh why is there an undefined reference to getone when the > compilation seems to find libgetone.so
The evil ldconfig > 2) What is the correct approach for paths if I want a home-developed > library that isn't part of the /usr/lib etc... Hand-copying isn't really > an option. Use static libraries > 3) What am i supposed to write in annotation(Library="")? The name of the library, i.e. getone The compiler will call gcc using "-lgetone" and assume everything is setup in the system. You are supposed to use LibraryDirectory="/path/to/dir", but it doesn't seem to be working at the moment. -- Martin Sjölund
