unleashed-firmware/targets/f7/application_ext.ld

48 lines
676 B
Text
Raw Normal View History

FORCE_COMMON_ALLOCATION
SECTIONS {
.text 0x00000000 : ALIGN(4) {
*(.text)
*(.stub)
*(.text*)
*(.text.*)
*(.text._*)
KEEP (*(.init))
KEEP (*(.fini))
}
.rodata : {
*(.rodata)
*(.rodata1)
*(.rodata.*)
}
.data : {
*(.data)
*(.data1)
*(.data.*)
}
.bss : {
*(.bss)
*(.bss*)
*(.sbss)
*(.sbss*)
*(COMMON)
}
.ARM.attributes : {
*(.ARM.attributes)
*(.ARM.attributes.*)
}
/DISCARD/ : {
*(.comment)
*(.comment.*)
*(.llvmbc)
*(.llvmcmd)
}
}