⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 i386pe.xr

📁 彭国伦书上的所有原代码
💻 XR
字号:
OUTPUT_FORMAT(pe-i386)SEARCH_DIR(/lib); SEARCH_DIR(/usr/lib); SEARCH_DIR(/egcs-1.1.2/lib); SEARCH_DIR(/usr/local/lib); SEARCH_DIR(/egcs-1.1.2/i386-mingw32/lib);ENTRY(_mainCRTStartup)SECTIONS{  .text  :   {    *(.text)    *(.glue_7t)    *(.glue_7)    /* ??? Why is .gcc_exc here?  */    *(.gcc_except_table)  }  /* The Cygwin32 library uses a section to avoid copying certain data     on fork.  This used to be named ".data".  The linker used     to include this between __data_start__ and __data_end__, but that     breaks building the cygwin32 dll.  Instead, we name the section     ".data_cygwin_nocopy" and explictly include it after __data_end__. */  .data  :   {    *(.data)    *(.data2)  }  .bss  :  {    *(.bss)    *(COMMON)  }  .rdata  :  {    *(.rdata)    *(.eh_frame)  }  .edata  :  {    *(.edata)  }  /DISCARD/ :  {    *(.debug$S)    *(.debug$T)    *(.debug$F)    *(.drectve)  }  .idata  :  {    /* This cannot currently be handled with grouped sections.	See pe.em:sort_sections.  */  }  .CRT  :  { 					  }  .endjunk  :  {    /* end is deprecated, don't use it */  }  .reloc  :  { 					    *(.reloc)  }  .rsrc  :  { 					    *(.rsrc)  }  .stab   :  {    [ .stab ]  }  .stabstr   :  {    [ .stabstr ]  }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -