diff options
author | Hans-Peter Nilsson <hp@axis.com> | 2001-06-15 13:13:46 +0000 |
---|---|---|
committer | Hans-Peter Nilsson <hp@axis.com> | 2001-06-15 13:13:46 +0000 |
commit | 7e66c3f5307c3e83fd8d6923f0ac0a3a940192ca (patch) | |
tree | 5fd2e655980743daea1449c420bd38d170dc2f6a /ld/ldlang.c | |
parent | 2a096f0438fe97990dc7fcfa2638ded16fcc526c (diff) | |
download | gdb-7e66c3f5307c3e83fd8d6923f0ac0a3a940192ca.zip gdb-7e66c3f5307c3e83fd8d6923f0ac0a3a940192ca.tar.gz gdb-7e66c3f5307c3e83fd8d6923f0ac0a3a940192ca.tar.bz2 |
* ldlang.c (lang_check): Emit fatal error if relocatable link
between different object flavours.
Diffstat (limited to 'ld/ldlang.c')
-rw-r--r-- | ld/ldlang.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/ld/ldlang.c b/ld/ldlang.c index 1d338e6..4512af6 100644 --- a/ld/ldlang.c +++ b/ld/ldlang.c @@ -3520,6 +3520,11 @@ lang_check () bfd_printable_name (input_bfd), input_bfd, bfd_printable_name (output_bfd)); } + else if (link_info.relocateable + && bfd_get_flavour (input_bfd) != bfd_get_flavour (output_bfd)) + einfo (_("%P%F: Relocatable linking from format %s (%B) to format %s (%B) is not supported"), + bfd_get_target (input_bfd), input_bfd, + bfd_get_target (output_bfd), output_bfd); else if (bfd_count_sections (input_bfd)) { /* If the input bfd has no contents, it shouldn't set the |