aboutsummaryrefslogtreecommitdiff
path: root/ld
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2004-12-20 15:16:06 +0000
committerNick Clifton <nickc@redhat.com>2004-12-20 15:16:06 +0000
commit550bdea6de2e36e9828b0ebbb89a7d436dfefadc (patch)
tree986ae48292815470a77e017ea32bfee3980b2f40 /ld
parentfbfdf750892dc68c5cbb7954cd95946ef6a64838 (diff)
downloadfsf-binutils-gdb-550bdea6de2e36e9828b0ebbb89a7d436dfefadc.zip
fsf-binutils-gdb-550bdea6de2e36e9828b0ebbb89a7d436dfefadc.tar.gz
fsf-binutils-gdb-550bdea6de2e36e9828b0ebbb89a7d436dfefadc.tar.bz2
Issue an error message if -static and -shared are used together.
Diffstat (limited to 'ld')
-rw-r--r--ld/ChangeLog5
-rw-r--r--ld/ldmain.c3
2 files changed, 8 insertions, 0 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog
index f5ef3a7..b8a5e7d 100644
--- a/ld/ChangeLog
+++ b/ld/ChangeLog
@@ -1,3 +1,8 @@
+2004-12-20 Nick Clifton <nickc@redhat.com>
+
+ * ldmain.c (main): Issue an error message if -static and -shared
+ are used together.
+
2004-12-17 Jakub Jelinek <jakub@redhat.com>
* ldexp.h (exp_data_seg): Add min_base and maxpagesize fields.
diff --git a/ld/ldmain.c b/ld/ldmain.c
index 04672f3..ca53251 100644
--- a/ld/ldmain.c
+++ b/ld/ldmain.c
@@ -370,6 +370,9 @@ main (int argc, char **argv)
einfo (_("%P%F: -r and -shared may not be used together\n"));
}
+ if (!config.dynamic_link && link_info.shared)
+ einfo (_("%P%F: -static and -shared may not be used together\n"));
+
if (! link_info.shared)
{
if (command_line.filter_shlib)