diff options
Diffstat (limited to 'src/rp2040/rp2040_link.lds.S')
-rw-r--r-- | src/rp2040/rp2040_link.lds.S | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/rp2040/rp2040_link.lds.S b/src/rp2040/rp2040_link.lds.S index 9b0264a2..6c2db3c9 100644 --- a/src/rp2040/rp2040_link.lds.S +++ b/src/rp2040/rp2040_link.lds.S @@ -77,5 +77,8 @@ SECTIONS // that isn't needed so no need to include them in the binary. *(.init) *(.fini) + // Don't include exception tables + *(.ARM.extab) + *(.ARM.exidx) } } |