]> Git Repo - binutils.git/blob - ld/aout.sc-sh
Remove sh sanitization comments.
[binutils.git] / ld / aout.sc-sh
1 cat <<EOF
2 OUTPUT_FORMAT("${OUTPUT_FORMAT}")
3 OUTPUT_ARCH(${ARCH})
4
5 ${RELOCATING+${LIB_SEARCH_DIRS}}
6 ${RELOCATING+__DYNAMIC  =  0;}
7 ${STACKZERO+${RELOCATION+${STACKZERO}}}
8 SECTIONS
9 {
10   .text ${RELOCATING+${TEXT_START_ADDR}}:
11   {
12     CREATE_OBJECT_SYMBOLS
13     *(.text)
14     ${RELOCATING+_etext = ${DATA_ALIGNMENT};}
15   }
16   .data  ${RELOCATING+${DATA_ALIGNMENT}} :
17   {
18     *(.data)
19     ${CONSTRUCTING+CONSTRUCTORS}
20     ${RELOCATING+_edata  =  .;}
21   }
22   .bss ${RELOCATING+SIZEOF(.data) + ADDR(.data)} :
23   {
24     ${RELOCATING+ __bss_start = .};
25    *(.bss)
26    *(COMMON)
27    ${RELOCATING+_end = . };
28    ${RELOCATING+__end = . };
29   }
30 }
31 EOF
This page took 0.02538 seconds and 4 git commands to generate.