15 lines
189 B
Plaintext
15 lines
189 B
Plaintext
|
|
|
|
SECTIONS {
|
|
|
|
.text : ALIGN(4)
|
|
{
|
|
#IF riscv
|
|
KEEP(*(.init));
|
|
KEEP(*(.init.rust));
|
|
KEEP(*(.text.abort));
|
|
#ENDIF
|
|
*(.literal .text .literal.* .text.*)
|
|
} > ROTEXT
|
|
|
|
} |