aboutsummaryrefslogtreecommitdiff
path: root/crt0/crt0.lds
blob: 222e022e4bff0f0886770cc31008cfa0ec670d28 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
SECTIONS
{
  . = 0x00000000;
  . = ALIGN(4);
  .bootstrap : { crt0_s.o(.bootstrap) crt0_c.o(.text) }

  /DISCARD/ : {
  	    *(.text*)
	    *(.data*)
	    *(.rodata*)
	    *(.bss*)
  	    *(.note*)
	    *(.indent)
	    *(.comment)
	    *(.stab)
	    *(.stabstr)
  }
}