Currently BOLT finds LSDA secition by it's name .gcc_except_table.main . But sometimes it might have suffix e.g. .gcc_except_table.main. Find LSDA section by it's address, rather by it's name. Fixes #71804
8 lines
151 B
Plaintext
8 lines
151 B
Plaintext
SECTIONS {
|
|
.text : { *(.text*) }
|
|
.gcc_except_table.main : { *(.gcc_except_table*) }
|
|
. = 0x20000;
|
|
.eh_frame : { *(.eh_frame) }
|
|
. = 0x80000;
|
|
}
|