Add can_cast_size_t_to_int
[helenos.git] / boot / arch / ppc32 / _link.ld.in
blob51d47c94cf0859975aec890ef8beb63259db66cf
1 ENTRY(start)
3 SECTIONS {
4         . = 0x08000000;
5         .text : {
6                 loader_start = .;
7                 *(BOOTSTRAP);
8                 *(.text);
9         }
10         .data : {
11                 *(.data);       /* initialized data */
12                 *(.rodata);
13                 *(.rodata.*);
14                 *(.sdata);
15                 *(.reginfo);
16                 *(.sbss);
17                 *(.scommon);
18                 *(.bss);        /* uninitialized static variables */
19                 *(COMMON);      /* global variables */
20                 loader_end = .;
21                 payload_start = .;
22                 *(.payload);
23                 payload_end = .;
24         }
26         /DISCARD/ : {
27                 *(.gnu.*);
28                 *(.mdebug*);
29                 *(.pdr);
30                 *(.comment);
31                 *(.note.*);
32         }