Skip to content

Commit 7f2305d

Browse files
authored
Merge pull request #434 from danielinux/test-app-arm-exidx
Added section for ARM.exidx in test-app linker script
2 parents 1db4189 + 637f135 commit 7f2305d

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

test-app/ARM.ld

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,13 @@ SECTIONS
1818
_end_text = .;
1919
} > FLASH
2020

21+
.ARM :
22+
{
23+
__exidx_start = .;
24+
*(.ARM.exidx*)
25+
__exidx_end = .;
26+
} > FLASH
27+
2128
_stored_data = .;
2229

2330
.data : AT (_stored_data)

0 commit comments

Comments
 (0)