mirror of
				https://github.com/KevinMidboe/linguist.git
				synced 2025-10-29 17:50:22 +00:00 
			
		
		
		
	Linker Script samples.
vmlinux.lds by Martin Mares; license GPL v2. link.ld by Anthony Zbierajewski; license GPL v2. ld.script by Wu Zhangjink; license GPL v2.
This commit is contained in:
		
							
								
								
									
										12
									
								
								samples/Linker Script/link.ld
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										12
									
								
								samples/Linker Script/link.ld
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,12 @@ | ||||
| /* | ||||
| *  link.ld | ||||
| */ | ||||
| OUTPUT_FORMAT(elf32-i386) | ||||
| ENTRY(start) | ||||
| SECTIONS | ||||
|  { | ||||
|    . = 0x100000; | ||||
|    .text : { *(.text) } | ||||
|    .data : { *(.data) } | ||||
|    .bss  : { *(.bss)  } | ||||
|  } | ||||
		Reference in New Issue
	
	Block a user