From: Christopher Faylor Date: Mon, 11 Nov 2002 17:42:36 +0000 (+0000) Subject: * pe-dll.c (autofilter_liblist): Generalize library names to catch more X-Git-Tag: gprof-pre-ansify-2004-05-26~3148 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=a67c1a99765e9a3f9a5f0cd4c43303c8b02662df;p=pf3gnuchains%2Fpf3gnuchains4x.git * pe-dll.c (autofilter_liblist): Generalize library names to catch more creative library naming instances like, e.g., libstdc++-2.a. --- diff --git a/ld/ChangeLog b/ld/ChangeLog index e09369727c..2d1bf5f8e9 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,8 @@ +2002-11-11 Charles Wilson + + * 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 * emulparams/elf32btsmipn32.sh (TEXT_DYNAMIC): Define. diff --git a/ld/pe-dll.c b/ld/pe-dll.c index a85bf94038..38254268e2 100644 --- a/ld/pe-dll.c +++ b/ld/pe-dll.c @@ -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 } };