aboutsummaryrefslogtreecommitdiff
path: root/ld/ld-gld68k.script
blob: 65ebc725b82566ac470aedc868e56174dda53c23 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
SEARCH_DIR(/lib) 			
SEARCH_DIR(/usr/lib) 			
SEARCH_DIR(/usr/local/lib) 		
__DYNAMIC  =  0; 				
SECTIONS 				
{ 					
  .text 0x2020 BLOCK(0x2000): 		
  { 					
   CREATE_OBJECT_SYMBOLS 		
    *(.text) 				
    _etext  =  ALIGN( 0x2000);       	
    }  					
  .data  ALIGN(0x20000)  :		
  { 					
    *(.data) 				
    ___DTOR_LIST__ = . ;               	
    LONG((___CTOR_LIST__ - .)/4 -2)  	
    *(___DTOR_LIST__)                   
    LONG(0)                             
    ___CTOR_LIST__ = . ;               	
    LONG((_edata  - .)/4 -2)            
    *(___CTOR_LIST__)                   
    LONG(0)                             
      _edata  =  .; 			
  }  					
  .bss   SIZEOF(.data) + ADDR(.data) :	
  { 					
   *(.bss)	 			
   [COMMON] 				
     _end = .;				
    } 					
}