1 # Linker script for i386 go32 (DJGPP)
3 test -z "$ENTRY" && ENTRY=start
4 EXE=${CONSTRUCTING+${RELOCATING+-exe}}
6 # These are substituted in as variables in order to get '}' in a shell
7 # conditional expansion.
8 CTOR='.ctor : { *(.ctor) }'
9 DTOR='.dtor : { *(.dtor) }'
12 OUTPUT_FORMAT("${OUTPUT_FORMAT}${EXE}")
18 .text ${RELOCATING+ ${TARGET_PAGE_SIZE}+SIZEOF_HEADERS} : {
20 ${RELOCATING+*(.gnu.linkonce.t*)}
23 ${RELOCATING+*(.gnu.linkonce.r*)}
24 ${RELOCATING+etext = . ; _etext = . ;}
25 ${RELOCATING+. = ALIGN(${SEGMENT_SIZE});}
27 .data ${RELOCATING+ ${DATA_ALIGNMENT}} : {
28 ${RELOCATING+djgpp_first_ctor = . ;
30 djgpp_last_ctor = . ;}
31 ${RELOCATING+djgpp_first_dtor = . ;
33 djgpp_last_dtor = . ;}
36 ${RELOCATING+*(.gcc_exc*)}
37 ${RELOCATING+___EH_FRAME_BEGIN__ = . ;}
38 ${RELOCATING+*(.eh_fram*)}
39 ${RELOCATING+___EH_FRAME_END__ = . ;}
40 ${RELOCATING+LONG(0);}
42 ${RELOCATING+*(.gnu.linkonce.d*)}
43 ${RELOCATING+edata = . ; _edata = . ;}
44 ${RELOCATING+. = ALIGN(${SEGMENT_SIZE});}
46 ${CONSTRUCTING+${RELOCATING-$CTOR}}
47 ${CONSTRUCTING+${RELOCATING-$DTOR}}
48 .bss ${RELOCATING+ SIZEOF(.data) + ADDR(.data)} :
52 ${RELOCATING+ end = . ; _end = . ;}
53 ${RELOCATING+ . = ALIGN(${SEGMENT_SIZE});}