703c41cf01
Allow other targets to use it, too. Signed-off-by: Jonas Gorski <jogo@openwrt.org> SVN-Revision: 45162
16 lines
174 B
Text
16 lines
174 B
Text
OUTPUT_ARCH(mips)
|
|
SECTIONS {
|
|
.text : {
|
|
_code_start = .;
|
|
*(.text)
|
|
*(.text.*)
|
|
*(.rodata)
|
|
*(.rodata.*)
|
|
*(.data)
|
|
*(.data.*)
|
|
}
|
|
|
|
. = ALIGN(32);
|
|
|
|
_code_end = .;
|
|
}
|