From 7b0eaa22d7c7dfd4d96ec681b6e58f72aaed84b2 Mon Sep 17 00:00:00 2001 From: Danny Smith Date: Sun, 24 Oct 2004 01:00:12 +0000 Subject: [PATCH] * pe-dll.c (process_def_file): Don't export all symbols by default if building a position-independent executable. --- ld/ChangeLog | 5 +++++ ld/pe-dll.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ld/ChangeLog b/ld/ChangeLog index 1536e73..c8f0caa 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,8 @@ +2004-10-24 Danny Smith + + * pe-dll.c (process_def_file): Don't export all symbols by default if + building a position-independent executable. + 2004-10-21 H.J. Lu PR 463 diff --git a/ld/pe-dll.c b/ld/pe-dll.c index 8813de6..46b0a13 100644 --- a/ld/pe-dll.c +++ b/ld/pe-dll.c @@ -527,7 +527,7 @@ process_def_file (bfd *abfd ATTRIBUTE_UNUSED, struct bfd_link_info *info) /* If we are not building a DLL, when there are no exports we do not build an export table at all. */ if (!pe_dll_export_everything && pe_def_file->num_exports == 0 - && !info->shared) + && info->executable) return; /* Now, maybe export everything else the default way. */ -- 2.7.4