summaryrefslogtreecommitdiffstats
path: root/ld/ldlnk960.sc
blob: 409d1b99a36949c0eceff52f63960ba70b061b77 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21

SECTIONS 
{ 
  .text : 
  { 
    *(.text) 
    }  
_etext = . ;
  .data  SIZEOF(.text) + ADDR(.text):
  { 
    *(.data) 
    }  
_edata = .; 
  .bss   SIZEOF(.data) + ADDR(.data) :    
  { 
   _bss_start = . ;
   *(.bss)  
   *(COMMON)
    } 
_end = . ; 
} 
OpenPOWER on IntegriCloud