mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-23 03:29:47 +08:00
* pe-dll.c (process_def_file): auto-export everything if
nothing is otherwise exported.
This commit is contained in:
@ -13,6 +13,8 @@ Mon Nov 9 16:41:30 1998 DJ Delorie <dj@cygnus.com>
|
|||||||
* Makefile.am: add new files and target-specific extra files
|
* Makefile.am: add new files and target-specific extra files
|
||||||
* emultempl/pe.em (gld_i386_list_options): list dll-specific
|
* emultempl/pe.em (gld_i386_list_options): list dll-specific
|
||||||
options.
|
options.
|
||||||
|
* pe-dll.c (process_def_file): auto-export everything if
|
||||||
|
nothing is otherwise exported.
|
||||||
|
|
||||||
Wed Nov 4 16:39:18 1998 Nick Clifton <nickc@cygnus.com>
|
Wed Nov 4 16:39:18 1998 Nick Clifton <nickc@cygnus.com>
|
||||||
|
|
||||||
|
@ -205,7 +205,7 @@ process_def_file (abfd, info)
|
|||||||
|
|
||||||
/* Now, maybe export everything else the default way */
|
/* Now, maybe export everything else the default way */
|
||||||
|
|
||||||
if (pe_dll_export_everything)
|
if (pe_dll_export_everything || pe_def_file->num_exports == 0)
|
||||||
{
|
{
|
||||||
for (b = info->input_bfds; b; b = b->link_next)
|
for (b = info->input_bfds; b; b = b->link_next)
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user