home *** CD-ROM | disk | FTP | other *** search
/ PC World 2000 January / PCWorld_2000-01_cd.bin / Software / Servis / Devc / _SETUP.5 / Group10 / i386pe.xu < prev   
Text File  |  1998-05-11  |  1KB  |  78 lines

  1. OUTPUT_FORMAT(pe-i386)
  2. SEARCH_DIR(/lib); SEARCH_DIR(/usr/lib); SEARCH_DIR(/mingw32/lib); SEARCH_DIR(/usr/local/lib); SEARCH_DIR(/mingw32/i386-mingw32/lib);
  3. ENTRY(_mainCRTStartup)
  4. SECTIONS
  5. {
  6.   .text  : 
  7.   {
  8.     *(.text)
  9.     *(.glue_7t)
  10.     *(.glue_7)
  11.      ___CTOR_LIST__ = .; __CTOR_LIST__ = . ; 
  12.             LONG (-1); *(.ctors); *(.ctor); LONG (0); 
  13.      ___DTOR_LIST__ = .; __DTOR_LIST__ = . ; 
  14.             LONG (-1); *(.dtors); *(.dtor);  LONG (0); 
  15.     /* ??? Why is .gcc_exc here?  */
  16.     *(.gcc_except_table)
  17.   }
  18.   /* The Cygwin32 library uses a section to avoid copying certain data
  19.      on fork.  This used to be named ".data".  The linker used
  20.      to include this between __data_start__ and __data_end__, but that
  21.      breaks building the cygwin32 dll.  Instead, we name the section
  22.      ".data_cygwin_nocopy" and explictly include it after __data_end__. */
  23.   .data  : 
  24.   {
  25.     *(.data)
  26.     *(.data2)
  27.   }
  28.   .bss  :
  29.   {
  30.     *(.bss)
  31.     *(COMMON)
  32.   }
  33.   .rdata  :
  34.   {
  35.     *(.rdata)
  36.     *(.eh_frame)
  37.   }
  38.   .edata  :
  39.   {
  40.     *(.edata)
  41.   }
  42.   /DISCARD/ :
  43.   {
  44.     *(.debug$S)
  45.     *(.debug$T)
  46.     *(.debug$F)
  47.     *(.drectve)
  48.   }
  49.   .idata  :
  50.   {
  51.     /* This cannot currently be handled with grouped sections.
  52.     See pe.em:sort_sections.  */
  53.   }
  54.   .CRT  :
  55.   {                     
  56.   }
  57.   .endjunk  :
  58.   {
  59.     /* end is deprecated, don't use it */
  60.   }
  61.   .reloc  :
  62.   {                     
  63.     *(.reloc)
  64.   }
  65.   .rsrc  :
  66.   {                     
  67.     *(.rsrc)
  68.   }
  69.   .stab   :
  70.   {
  71.     [ .stab ]
  72.   }
  73.   .stabstr   :
  74.   {
  75.     [ .stabstr ]
  76.   }
  77. }
  78.