Top 1K Features Creators Events Podcasts Books Extensions Interviews Blog Explorer CSV

Linker Script

< >

Linker Script is an application created in 1991.

#2575on 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) } }

- Build the next great programming language Add About Search Keywords Livestreams Labs Resources Acknowledgements

Built with Scroll v144.0.0