1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

Merge pull request #2122 from locicontrols/eh_frame

cpu/cc2538: add the exception handling frame section "eh_frame" to the linker script.
This commit is contained in:
Thomas Eichinger 2014-12-03 19:05:43 +01:00
commit 6662e16b92

View File

@ -96,6 +96,13 @@ SECTIONS
} > rom
PROVIDE_HIDDEN (__exidx_end = .);
/* exception handling */
. = ALIGN(4);
.eh_frame :
{
KEEP (*(.eh_frame))
} > rom
. = ALIGN(4);
_etext = .;