aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2008-01-10 14:28:49 +0000
committerNick Clifton <nickc@redhat.com>2008-01-10 14:28:49 +0000
commit71934f948a5d511b0d9f2fc0dd3dedca4cc9b84b (patch)
tree5820d2561b7cf4fab3388d75d5c40f2143a92240
parente819ade1fbb0faf9f23105b52dd5215d80386a7e (diff)
downloadbinutils-71934f948a5d511b0d9f2fc0dd3dedca4cc9b84b.zip
binutils-71934f948a5d511b0d9f2fc0dd3dedca4cc9b84b.tar.gz
binutils-71934f948a5d511b0d9f2fc0dd3dedca4cc9b84b.tar.bz2
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.
-rw-r--r--ld/ChangeLog7
-rw-r--r--ld/ldlang.c2
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;