From: Nick Clifton Date: Mon, 6 Sep 2004 17:24:32 +0000 (+0000) Subject: (elf_link_add_object_symbols): Set the error code to bfd_error_wrong_format when X-Git-Tag: csl-arm-2004-q3~237 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9a0789ec7d034bb1035cf559381c624f8a50734e;p=platform%2Fupstream%2Fbinutils.git (elf_link_add_object_symbols): Set the error code to bfd_error_wrong_format when the input format does not match the output format. --- diff --git a/bfd/ChangeLog b/bfd/ChangeLog index dfb5c46..60c0069 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,9 @@ +2004-09-06 Nick Clifton + + * elflink.c (elf_link_add_object_symbols): Set the error code to + bfd_error_wrong_format when the input format does not match the + output format. + 2004-09-06 Alan Modra * elf64-ppc.c (is_ppc64_target): New function, extracted from.. diff --git a/bfd/elflink.c b/bfd/elflink.c index 6ccc08c..e82a8e3 100644 --- a/bfd/elflink.c +++ b/bfd/elflink.c @@ -2940,7 +2940,10 @@ elf_link_add_object_symbols (bfd *abfd, struct bfd_link_info *info) || !is_elf_hash_table (hash_table) || hash_table->root.creator != abfd->xvec) { - bfd_set_error (bfd_error_invalid_operation); + if (info->relocatable) + bfd_set_error (bfd_error_invalid_operation); + else + bfd_set_error (bfd_error_wrong_format); goto error_return; } }