forked from M-Labs/artiq
firmware/ksupport: Include .gcc_except_table (LSDA)
For whatever reason, no language-specific unwind data was generated for ksupport code so far, but rustc does emit it for an upcoming refactoring.
This commit is contained in:
parent
1ddefaa42f
commit
d73915f904
|
@ -60,6 +60,11 @@ SECTIONS
|
||||||
KEEP(*(.eh_frame_hdr))
|
KEEP(*(.eh_frame_hdr))
|
||||||
} > ksupport :text :eh_frame
|
} > ksupport :text :eh_frame
|
||||||
|
|
||||||
|
.gcc_except_table :
|
||||||
|
{
|
||||||
|
*(.gcc_except_table)
|
||||||
|
} > ksupport
|
||||||
|
|
||||||
.data :
|
.data :
|
||||||
{
|
{
|
||||||
*(.data .data.*)
|
*(.data .data.*)
|
||||||
|
|
Loading…
Reference in New Issue