Pierre Sarrazin wrote:
After I read your reply, I compiled fam 2.6.10 from the sources I got on http://oss.sgi.com/projects/fam/ and tried my program again. This time it worked. What is interesting is the difference in the shared libraries that are required. Normally, 'ldd a.out' reports this:
You don't want to use ldd. ldd prints the entire dependancy tree in a flat list. It means that ldd not only prints your app's dependancies, but also the dependancies' dependancies.
Use 'objdump -x a.out | grep NEEDED' instead.