mirror of
				https://github.com/KevinMidboe/linguist.git
				synced 2025-10-29 17:50:22 +00:00 
			
		
		
		
	vmlinux.lds by Martin Mares; license GPL v2. link.ld by Anthony Zbierajewski; license GPL v2. ld.script by Wu Zhangjink; license GPL v2.
		
			
				
	
	
		
			12 lines
		
	
	
		
			159 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			159 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
/*
 | 
						|
*  link.ld
 | 
						|
*/
 | 
						|
OUTPUT_FORMAT(elf32-i386)
 | 
						|
ENTRY(start)
 | 
						|
SECTIONS
 | 
						|
 {
 | 
						|
   . = 0x100000;
 | 
						|
   .text : { *(.text) }
 | 
						|
   .data : { *(.data) }
 | 
						|
   .bss  : { *(.bss)  }
 | 
						|
 } |