Penguin
Diff: CommonProgrammingBugs
EditPageHistoryDiffInfoLikePages

Differences between current version and predecessor to the previous major change of CommonProgrammingBugs.

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

Newer page: version 11 Last edited on Friday, May 5, 2006 11:49:36 pm by LawrenceDoliveiro
Older page: version 10 Last edited on Tuesday, November 9, 2004 2:40:40 am by AristotlePagaltzis Revert
@@ -30,4 +30,7 @@
  
 !!! <tt>ld: ''name'': hidden symbol `__dso_handle' in foo.o is referenced by DSO</tt> 
  
 You are linking against a shared library that was created incorrectly. With [GCC] 3.x this might happen if you create a SharedLibrary directly using <tt>ld -shared -o libfoo.so ...</tt>. Instead, use <tt>g++ -shared -Wl,-soname,libfoo.so.1 -o libfoo.so ...</tt> 
+  
+----  
+CategoryProgrammingBugs