mirror of
https://github.com/KevinMidboe/linguist.git
synced 2025-12-08 20:38:47 +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