Penguin
Diff: SharedLibrary
EditPageHistoryDiffInfoLikePages

Differences between version 4 and previous revision of SharedLibrary.

Other diffs: Previous Major Revision, Previous Author, or view the Annotated Edit History

Newer page: version 4 Last edited on Tuesday, June 1, 2004 11:24:11 am by PerryLorier Revert
Older page: version 3 Last edited on Tuesday, June 1, 2004 9:31:52 am by DanielLawson Revert
@@ -68,4 +68,10 @@
 As a final step, I make sure to install my header files somewhere useful! 
  cp ../include/libtrace.h /usr/local/wand/include/libtrace.h 
  
 There are excellent docs on using libtool supplied with the program. 
+  
+!! Examining symbols in a shared library  
+ nm /lib/libc.so.6  
+doesn't work, as libc is a dynamic library, however  
+ nm --dynamic /lib/libc.so.6  
+will. just [FYI].