Index: [thread] [date] [subject] [author]
  From: Charles Briscoe-Smith <cpbs@debian.org>
  To  : Brian S. Julin <bri@tull.umassp.edu>
  Date: Wed, 21 Apr 1999 18:22:18 +0100

Re: gspec and fftw problems

># nm /usr/lib/libfftw.so | grep fftw_insert
>/usr/lib/libfftw.so: no symbols

This is normal for a stripped shared library (and on Debian, all shared
libraries are stripped).  To get at the dynamic symbols, which are stored
separately from the normal symbols (and were not stripped!), do this:

$ objdump --dynamic-syms /usr/lib/libfftw.so

-- 
Charles Briscoe-Smith
White pages entry, with PGP key: <URL:http://alethea.ukc.ac.uk/wp?95cpb4>;
PGP public keyprint: 74 68 AB 2E 1C 60 22 94  B8 21 2D 01 DE 66 13 E2

Index: [thread] [date] [subject] [author]