home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / gnu / djgpp / src / binutils.2 / ld / sa29200.sc- < prev    next >
Encoding:
Text File  |  1993-05-30  |  440 b   |  35 lines

  1. cat <<EOF
  2. OUTPUT_FORMAT("${OUTPUT_FORMAT}")
  3. ENTRY(start)
  4.  
  5. SECTIONS {
  6.   .text ${RELOCATING+${TEXT_START_ADDR}} : 
  7.     {
  8.     *(.text);
  9.     *(.text1);
  10.     *(.text2);
  11.     ${RELOCATING+_etext = .};
  12.     }
  13.   .lit . :
  14.    {
  15.     *(.lit);
  16.     ${RELOCATING+_elit = .};
  17.    }
  18.   .data . :
  19.     {
  20.     *(.data);
  21.     *(.data1);
  22.     *(.data2);
  23.     ${RELOCATING+_edata = .};
  24.     ${CONSTRUCTING+CONSTRUCTORS}
  25.     }
  26.  
  27.   .bss  . :
  28.     { 
  29.     *(COMMON)     
  30.     *(.bss)
  31.     ${RELOCATING+_end = .};
  32.     } 
  33. }
  34. EOF
  35.