From 637f135ca6c2768615798aaffb3b30629f8ffe1c Mon Sep 17 00:00:00 2001 From: Daniele Lacamera Date: Tue, 16 Apr 2024 18:36:25 +0200 Subject: [PATCH] Added section for ARM.exidx in test-app linker script --- test-app/ARM.ld | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/test-app/ARM.ld b/test-app/ARM.ld index e8e739b7..30639462 100644 --- a/test-app/ARM.ld +++ b/test-app/ARM.ld @@ -18,6 +18,13 @@ SECTIONS _end_text = .; } > FLASH + .ARM : + { + __exidx_start = .; + *(.ARM.exidx*) + __exidx_end = .; + } > FLASH + _stored_data = .; .data : AT (_stored_data)