aboutsummaryrefslogtreecommitdiff
path: root/ld
diff options
context:
space:
mode:
authorChristopher Faylor <me+cygwin@cgf.cx>2002-11-11 21:16:28 +0000
committerChristopher Faylor <me+cygwin@cgf.cx>2002-11-11 21:16:28 +0000
commit9e8d33e774b3ee5cdefb1975d628688912dd82e7 (patch)
tree5396be1e8c613fc19afc330cc1e6a96143cb9bfe /ld
parent75c2ea5b08c7df32f5f7332ff9781fe98bdb0414 (diff)
downloadgdb-9e8d33e774b3ee5cdefb1975d628688912dd82e7.zip
gdb-9e8d33e774b3ee5cdefb1975d628688912dd82e7.tar.gz
gdb-9e8d33e774b3ee5cdefb1975d628688912dd82e7.tar.bz2
* pe-dll.c (autofilter_liblist): add libmingwex and libgcj to the list of
restricted auto-export libs.
Diffstat (limited to 'ld')
-rw-r--r--ld/ChangeLog5
-rw-r--r--ld/pe-dll.c2
2 files changed, 7 insertions, 0 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog
index 2d1bf5f..20ba2c8 100644
--- a/ld/ChangeLog
+++ b/ld/ChangeLog
@@ -1,5 +1,10 @@
2002-11-11 Charles Wilson <cwilson@ece.gatech.edu>
+ * pe-dll.c (autofilter_liblist): add libmingwex and libgcj to the list
+ of restricted auto-export libs.
+
+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.
diff --git a/ld/pe-dll.c b/ld/pe-dll.c
index 3825426..af0cd51 100644
--- a/ld/pe-dll.c
+++ b/ld/pe-dll.c
@@ -231,9 +231,11 @@ static autofilter_entry_type autofilter_liblist[] =
{ "libgcc", 6 },
{ "libstdc++", 9 },
{ "libmingw32", 10 },
+ { "libmingwex", 10 },
{ "libg2c", 6 },
{ "libsupc++", 9 },
{ "libobjc", 7 },
+ { "libgcj", 6 },
{ NULL, 0 }
};