xdebug

next generation of mdebug (work in progress)
git clone http://frotz.net/git/xdebug.git
Log | Files | Refs | README

agent.ld (452B)


      1 
      2 /* RAM only binary layout */
      3 
      4 SECTIONS {
      5 	.text : {
      6 		. = ALIGN(4);
      7 		KEEP (*(.vectors))
      8 		*(.text)
      9 		*(.text.*)
     10 		*(.rodata)
     11 		*(.rodata.*)
     12 		. = ALIGN(4);
     13 		__data_init__ = . ;
     14 	} /* >RAM */
     15 	.data : {
     16 		. = ALIGN(4);
     17 		__data_start__ = . ;
     18 		*(.data)
     19 		*(.data.*)
     20 		. = ALIGN(4);
     21 		__data_end__ = . ;
     22 	} /* >RAM */
     23 	.bss : {
     24 		. = ALIGN(4);
     25 		__bss_start__ = . ;
     26 		*(.bss)
     27 		*(.bss.*)
     28 		*(COMMON)
     29 		. = ALIGN(4);
     30 		__bss_end__ = . ;
     31 	} /*>RAM */
     32 }