You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

27 lines
443 B

# Linker script for Motorola Delta sysV68 R3V7.1
cat <<EOF
OUTPUT_FORMAT("${OUTPUT_FORMAT}")
OUTPUT_ARCH(${ARCH})
${LIB_SEARCH_DIRS}
ENTRY(_start)
SECTIONS
{
.text ${TEXT_START_ADDR} : {
*(.init)
*(.text)
*(.fini)
}
${RELOCATING+ etext = .;}
.data ${RELOCATING+ 0x400000 + (. & 0xfff)} : {
*(.data .data2)
}
${RELOCATING+ edata = .;}
.bss . :
{
*(.bss)
*(COMMON)
}
${RELOCATING+ end = .;}
}