URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Only display areas with differences |
Details |
Blame |
View Log
Rev 816 |
Rev 818 |
# AIX linker script.
|
# AIX linker script.
|
# AIX always uses shared libraries. The section VMA appears to be
|
# AIX always uses shared libraries. The section VMA appears to be
|
# unimportant. The native linker aligns the sections on boundaries
|
# unimportant. The native linker aligns the sections on boundaries
|
# specified by the -H option.
|
# specified by the -H option.
|
|
|
cat <
|
cat <
|
OUTPUT_ARCH(${ARCH})
|
OUTPUT_ARCH(${ARCH})
|
${RELOCATING+${LIB_SEARCH_DIRS}}
|
${RELOCATING+${LIB_SEARCH_DIRS}}
|
${RELOCATING+ENTRY (__start)}
|
${RELOCATING+ENTRY (__start)}
|
SECTIONS
|
SECTIONS
|
{
|
{
|
.pad 0 : { *(.pad) }
|
.pad 0 : { *(.pad) }
|
|
|
. = 0x10000000;
|
. = 0x10000000;
|
.text ${RELOCATING-0} : {
|
.text ${RELOCATING-0} : {
|
${RELOCATING+PROVIDE (_text = .);}
|
${RELOCATING+PROVIDE (_text = .);}
|
*(.text)
|
*(.text)
|
*(.pr)
|
*(.pr)
|
*(.ro)
|
*(.ro)
|
*(.db)
|
*(.db)
|
*(.gl)
|
*(.gl)
|
*(.xo)
|
*(.xo)
|
*(.ti)
|
*(.ti)
|
*(.tb)
|
*(.tb)
|
${RELOCATING+PROVIDE (_etext = .);}
|
${RELOCATING+PROVIDE (_etext = .);}
|
}
|
}
|
. = ALIGN (0x10000000);
|
. = ALIGN (0x10000000);
|
.data . : {
|
.data . : {
|
${RELOCATING+PROVIDE (_data = .);}
|
${RELOCATING+PROVIDE (_data = .);}
|
*(.data)
|
*(.data)
|
*(.rw)
|
*(.rw)
|
*(.sv)
|
*(.sv)
|
*(.sv64)
|
*(.sv64)
|
*(.sv3264)
|
*(.sv3264)
|
*(.ua)
|
*(.ua)
|
. = ALIGN(4);
|
. = ALIGN(4);
|
${CONSTRUCTING+CONSTRUCTORS}
|
${CONSTRUCTING+CONSTRUCTORS}
|
*(.ds)
|
*(.ds)
|
*(.tc0)
|
*(.tc0)
|
*(.tc)
|
*(.tc)
|
*(.td)
|
*(.td)
|
${RELOCATING+PROVIDE (_edata = .);}
|
${RELOCATING+PROVIDE (_edata = .);}
|
}
|
}
|
.bss : {
|
.bss : {
|
*(.tocbss)
|
*(.tocbss)
|
*(.bss)
|
*(.bss)
|
*(.bs)
|
*(.bs)
|
*(.uc)
|
*(.uc)
|
*(COMMON)
|
*(COMMON)
|
${RELOCATING+PROVIDE (_end = .);}
|
${RELOCATING+PROVIDE (_end = .);}
|
${RELOCATING+PROVIDE (end = .);}
|
${RELOCATING+PROVIDE (end = .);}
|
}
|
}
|
|
|
.loader : {
|
.loader : {
|
*(.loader)
|
*(.loader)
|
}
|
}
|
|
|
.debug : {
|
.debug : {
|
*(.debug)
|
*(.debug)
|
}
|
}
|
}
|
}
|
EOF
|
EOF
|
|
|
© copyright 1999-2024
OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.