Support exceptions on all targets

This commit is contained in:
Nicolas Schodet
2012-09-03 19:51:40 +02:00
parent 74cd991e7e
commit 82ef2936a6
8 changed files with 90 additions and 64 deletions

View File

@@ -36,7 +36,6 @@ SECTIONS
. = ALIGN(4);
*(.rodata*) /* Read-only data */
. = ALIGN(4);
_etext = .;
} >rom
/*
@@ -52,6 +51,9 @@ SECTIONS
__exidx_end = .;
} >rom
. = ALIGN(4);
_etext = .;
.data : {
_data = .;
*(.data*) /* Read-write initialized data */