mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-20 01:50:24 +08:00
2010-06-15 Viktor Kutuzov <vkutuzov@accesssoftek.com>
* arm.cc: Allow combining objects with no EABI version information.
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
2010-06-15 Viktor Kutuzov <vkutuzov@accesssoftek.com>
|
||||||
|
|
||||||
|
* arm.cc: Allow combining objects with no EABI version
|
||||||
|
information.
|
||||||
|
|
||||||
2010-06-15 Rafael Espindola <espindola@google.com>
|
2010-06-15 Rafael Espindola <espindola@google.com>
|
||||||
|
|
||||||
* plugin.cc (Plugin_hook::run): Set in_real_elf for the start symbol.
|
* plugin.cc (Plugin_hook::run): Set in_real_elf for the start symbol.
|
||||||
|
@ -9394,7 +9394,8 @@ Target_arm<big_endian>::are_eabi_versions_compatible(
|
|||||||
{
|
{
|
||||||
// v4 and v5 are the same spec before and after it was released,
|
// v4 and v5 are the same spec before and after it was released,
|
||||||
// so allow mixing them.
|
// so allow mixing them.
|
||||||
if ((v1 == elfcpp::EF_ARM_EABI_VER4 && v2 == elfcpp::EF_ARM_EABI_VER5)
|
if ((v1 == elfcpp::EF_ARM_EABI_UNKNOWN || v2 == elfcpp::EF_ARM_EABI_UNKNOWN)
|
||||||
|
|| (v1 == elfcpp::EF_ARM_EABI_VER4 && v2 == elfcpp::EF_ARM_EABI_VER5)
|
||||||
|| (v1 == elfcpp::EF_ARM_EABI_VER5 && v2 == elfcpp::EF_ARM_EABI_VER4))
|
|| (v1 == elfcpp::EF_ARM_EABI_VER5 && v2 == elfcpp::EF_ARM_EABI_VER4))
|
||||||
return true;
|
return true;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user