mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-24 10:35:12 +08:00
* pe-dll.c (autofilter_objectlist): Add gcrt0.o.
(auto-export): Fix indentation.
This commit is contained in:
parent
da89cce1af
commit
59d28a9467
@ -1,3 +1,8 @@
|
||||
2001-10-19 Danny Smith <danny_r_smith_2001@yahoo.co.nz>
|
||||
|
||||
* pe-dll.c (autofilter_objectlist): Add gcrt0.o.
|
||||
(auto-export): Fix indentation.
|
||||
|
||||
2001-10-18 Danny Smith <danny_r_smith_2001@yahoo.co.nz>
|
||||
|
||||
* pe-dll.c (autofilter_objectlist): Add startup objects
|
||||
|
11
ld/pe-dll.c
11
ld/pe-dll.c
@ -241,6 +241,7 @@ static autofilter_entry_type autofilter_objlist[] =
|
||||
{ "crt2.o", 6 },
|
||||
{ "dllcrt1.o", 9 },
|
||||
{ "dllcrt2.o", 9 },
|
||||
{ "gcrt0.o", 7 },
|
||||
{ "gcrt1.o", 7 },
|
||||
{ "gcrt2.o", 7 },
|
||||
{ NULL, 0 }
|
||||
@ -443,14 +444,14 @@ auto_export (abfd, d, n)
|
||||
|
||||
/* Next, exclude symbols from certain startup objects. */
|
||||
|
||||
if (abfd && (p = lbasename (abfd->filename)) )
|
||||
if (abfd && (p = lbasename (abfd->filename)))
|
||||
{
|
||||
afptr = autofilter_objlist;
|
||||
while (afptr->name)
|
||||
{
|
||||
while (afptr->name)
|
||||
{
|
||||
if ( strcmp (p, afptr->name) == 0 )
|
||||
return 0;
|
||||
afptr ++;
|
||||
return 0;
|
||||
afptr++;
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user