]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
* pe-dll.c (autofilter_liblist): Generalize library names to catch more
authorChristopher Faylor <me+cygwin@cgf.cx>
Mon, 11 Nov 2002 17:42:36 +0000 (17:42 +0000)
committerChristopher Faylor <me+cygwin@cgf.cx>
Mon, 11 Nov 2002 17:42:36 +0000 (17:42 +0000)
creative library naming instances like, e.g., libstdc++-2.a.

ld/ChangeLog
ld/pe-dll.c

index e09369727c8379615a0f01a09adc064900de700d..2d1bf5f8e95a5b138ae4c3cd97d126cd5915bb8d 100644 (file)
@@ -1,3 +1,8 @@
+2002-11-11  Charles Wilson  <cwilson@ece.gatech.edu>
+
+       * pe-dll.c (autofilter_liblist): Generalize library names to catch more
+       creative library naming instances like, e.g., libstdc++-2.a.
+
 2002-11-06  Alexandre Oliva  <aoliva@redhat.com>
 
        * emulparams/elf32btsmipn32.sh (TEXT_DYNAMIC): Define.
index a85bf94038cca4e5e46518d51829d1357c87ae67..38254268e226316dd02ab7e5c1973297bf79d938 100644 (file)
@@ -228,12 +228,12 @@ static autofilter_entry_type autofilter_symbollist[] =
 /* Do not specify library suffix explicitly, to allow for dllized versions.  */
 static autofilter_entry_type autofilter_liblist[] =
 {
-  { "libgcc.", 7 },
-  { "libstdc++.", 10 },
-  { "libmingw32.", 11 },
-  { "libg2c.", 7 },
-  { "libsupc++.", 10 },
-  { "libobjc.", 8 },
+  { "libgcc", 6 },
+  { "libstdc++", 9 },
+  { "libmingw32", 10 },
+  { "libg2c", 6 },
+  { "libsupc++", 9 },
+  { "libobjc", 7 },
   { NULL, 0 }
 };