For the record, here are a few commands that will display the rpath header.
objdump -x binary-or-library |grep RPATH
Perhaps an even better way to do this is:
readelf -d binary-or-library |head -20
The second command also displays direct dependencies on other libraries, followed by rpath .
Michael Dillon Jun 14 '11 at 18:39 2011-06-14 18:39
source share