aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDJ Delorie <dj@redhat.com>2000-07-19 00:04:04 +0000
committerDJ Delorie <dj@redhat.com>2000-07-19 00:04:04 +0000
commit9d68bc829ca59311705d4b0bb563b9419d88fb31 (patch)
tree47118af8e82c06d38aa3a87583ca47e95f570f78
parent4b43d9f6915b4d902d526d23271922e7af915f52 (diff)
downloadgdb-9d68bc829ca59311705d4b0bb563b9419d88fb31.zip
gdb-9d68bc829ca59311705d4b0bb563b9419d88fb31.tar.gz
gdb-9d68bc829ca59311705d4b0bb563b9419d88fb31.tar.bz2
* pe-dll.c (pe_dll_id_target): check object target name also
-rw-r--r--ld/ChangeLog4
-rw-r--r--ld/pe-dll.c3
2 files changed, 6 insertions, 1 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog
index 61d9c5f..0b661b5 100644
--- a/ld/ChangeLog
+++ b/ld/ChangeLog
@@ -1,3 +1,7 @@
+2000-07-18 DJ Delorie <dj@cygnus.com>
+
+ * pe-dll.c (pe_dll_id_target): check object target name also
+
2000-07-18 Hans-Peter Nilsson <hp@axis.com>
* scripttempl/elf.sc (.init): Only do ${INIT_START} and
diff --git a/ld/pe-dll.c b/ld/pe-dll.c
index 3fdcbba..cbd0c49 100644
--- a/ld/pe-dll.c
+++ b/ld/pe-dll.c
@@ -137,7 +137,8 @@ pe_dll_id_target (target)
{
int i;
for (i=0; pe_detail_list[i].target_name; i++)
- if (strcmp (pe_detail_list[i].target_name, target) == 0)
+ if (strcmp (pe_detail_list[i].target_name, target) == 0
+ || strcmp (pe_detail_list[i].object_target, target) == 0)
{
pe_details = pe_detail_list+i;
return;