diff options
Diffstat (limited to 'ld')
-rw-r--r-- | ld/ChangeLog | 7 | ||||
-rw-r--r-- | ld/ldlang.c | 2 |
2 files changed, 8 insertions, 1 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog index 359624e..9ef8fb7 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,10 @@ +2008-01-10 Daniel Jacobowitz <drow@sources.redhat.com> + + PR ld/5533 + * ldlang.c (lang_end): Issue a warning for a missing start symbol + of a shared library if the symbol was specified on the command + line. + 2008-01-10 Alan Modra <amodra@bigpond.net.au> * ld.texinfo (--gc-sections): Describe linker behaviour. diff --git a/ld/ldlang.c b/ld/ldlang.c index faeae3a..9d3c513 100644 --- a/ld/ldlang.c +++ b/ld/ldlang.c @@ -5078,7 +5078,7 @@ lang_end (void) bfd_boolean warn; if (link_info.relocatable || link_info.shared) - warn = FALSE; + warn = entry_from_cmdline; else warn = TRUE; |