mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-24 04:00:07 +08:00
* ldlang.c (lang_check): Emit fatal error if relocatable link
between different object flavours.
This commit is contained in:
@ -1,5 +1,8 @@
|
|||||||
2001-06-15 Hans-Peter Nilsson <hp@axis.com>
|
2001-06-15 Hans-Peter Nilsson <hp@axis.com>
|
||||||
|
|
||||||
|
* ldlang.c (lang_check): Emit fatal error if relocatable link
|
||||||
|
between different object flavours.
|
||||||
|
|
||||||
* lexsup.c (parse_args) <case OPTION_EXPORT_DYNAMIC, case 'E'>:
|
* lexsup.c (parse_args) <case OPTION_EXPORT_DYNAMIC, case 'E'>:
|
||||||
Set new link_info member export_dynamic.
|
Set new link_info member export_dynamic.
|
||||||
* ldmain.c (main): Initialize new link_info member export_dynamic.
|
* ldmain.c (main): Initialize new link_info member export_dynamic.
|
||||||
|
@ -3520,6 +3520,11 @@ lang_check ()
|
|||||||
bfd_printable_name (input_bfd), input_bfd,
|
bfd_printable_name (input_bfd), input_bfd,
|
||||||
bfd_printable_name (output_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))
|
else if (bfd_count_sections (input_bfd))
|
||||||
{
|
{
|
||||||
/* If the input bfd has no contents, it shouldn't set the
|
/* If the input bfd has no contents, it shouldn't set the
|
||||||
|
Reference in New Issue
Block a user