Measures Concepts
GitHub icon

Linker Script

Linker Script - Application

< >

Linker Script is an application created in 1991.

#1963on PLDB 33Years Old

ld combines a number of object and archive files, relocates their data and ties up symbol references. Usually the last step in compiling a program is to run ld. ld accepts Linker Command Language files written in a superset of AT&T鈥檚 Link Editor Command Language syntax, to provide explicit and total control over the linking process.


Example from the web:
/* * link.ld */ OUTPUT_FORMAT(elf32-i386) ENTRY(start) SECTIONS { . = 0x100000; .text : { *(.text) } .data : { *(.data) } .bss : { *(.bss) } }

View source

- Build the next great programming language Search Add Language Features Creators Resources About Blog Acknowledgements Queries Stats Sponsor Day 605 feedback@pldb.io Logout