9os

Experimental kernel using plan9 ideas for embedded device
git clone git://git.simple-cc.org/9os
Log | Files | Refs | README | LICENSE

gnu.ld (227B)


      1 SECTIONS
      2 {
      3 	.text . : {
      4 		text = .;
      5 		*crt.o(.text*)
      6 		*(.text*)
      7 		*(.rodata*)
      8 		*(.eh_frame*)
      9 		. = ALIGN(0x1000);
     10 		etext = .;
     11 	}
     12 
     13 	.data . : {
     14 		*(.data*)
     15 		edata = .;
     16 	}
     17 
     18 	.bss . : {
     19 		*(COMMON*)
     20 		*(.bss*)
     21 		end = .;
     22 	}
     23 }