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

📄 cfe_ldscript.svr4pic

📁 一个很好的嵌入式linux平台下的bootloader
💻 SVR4PIC
字号:
/* * This is the "template" linker script.  It gets run through the C preprocessor * (via cpp) to construct the real linker script. *//* our toolchain defines 'mips'.  Undefine it so it doesn't get expanded */#undef mipsOUTPUT_ARCH(mips)ENTRY(vec_reset)SECTIONS{  . = CFE_TEXT_START;  .text :    {     _ftext = . ;     eprol  =  .;    *(.text)    *(.dynamic)		/* Dynamic section wants to be here.  Why? */    *(.rodata)    *(.rodata.*)     _etext  =  .;   }  _gp = ALIGN(16) + 0x7FF0;   .got : { *(.got.plt) *(.got) }  .data :  {    _fdata = .;    *(.rdata)    *(.data)    CONSTRUCTORS    *(.sdata)  }   . = ALIGN(16);   _edata  =  .;   _fbss = .;  .sbss : {    *(.sbss)    *(.scommon)  }  .bss : {    *(.bss)    *(COMMON)  }  . = ALIGN(16);   _end = .;   __reloc_table_start = .;  .dynsym : {	*(.dynsym)   }  .rel.dyn : {	*(.rel.dyn)   }   __reloc_table_end = .;   _image_end = .;}

⌨️ 快捷键说明

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