mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-09-10 14:59:31 +08:00
* pe-dll.c (pe_dll_id_target): check object target name also
This commit is contained in:
@ -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>
|
2000-07-18 Hans-Peter Nilsson <hp@axis.com>
|
||||||
|
|
||||||
* scripttempl/elf.sc (.init): Only do ${INIT_START} and
|
* scripttempl/elf.sc (.init): Only do ${INIT_START} and
|
||||||
|
@ -137,7 +137,8 @@ pe_dll_id_target (target)
|
|||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
for (i=0; pe_detail_list[i].target_name; 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;
|
pe_details = pe_detail_list+i;
|
||||||
return;
|
return;
|
||||||
|
Reference in New Issue
Block a user