mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-01 11:59:27 +08:00
Minimal handle .typchk and .except section.
This commit is contained in:
@ -428,6 +428,14 @@ sec_to_styp_flags (sec_name, sec_flags)
|
||||
{
|
||||
styp_flags = STYP_LOADER;
|
||||
}
|
||||
else if (!strcmp (sec_name, _EXCEPT))
|
||||
{
|
||||
styp_flags = STYP_EXCEPT;
|
||||
}
|
||||
else if (!strcmp (sec_name, _TYPCHK))
|
||||
{
|
||||
styp_flags = STYP_TYPCHK;
|
||||
}
|
||||
#endif
|
||||
/* Try and figure out what it should be */
|
||||
else if (sec_flags & SEC_CODE)
|
||||
|
Reference in New Issue
Block a user