flipperzero-firmware/firmware/targets/f7/application-ext.ld

38 lines
298 B
Plaintext
Raw Normal View History

SECTIONS
{
.text 0x00000000 :
{
*(.text)
*(.text.*)
}
.rodata :
{
*(.rodata)
*(.rodata1)
*(.rodata.*)
}
.data :
{
*(.data)
*(.data1)
*(.data.*)
}
.bss :
{
*(.bss)
*(.bss.*)
*(.sbss)
*(.sbss.*)
*(COMMON)
}
/DISCARD/ :
{
*(.comment)
*(.comment.*)
}
}