1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-06 18:55:26 +02:00
tldr/pages/common/ld.md
Managor a5833ce758
*: make more information links dynamic (#16244)
Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
2025-04-23 10:24:12 +03:00

635 B

ld

Link object files together. More information: https://sourceware.org/binutils/docs/ld.html.

  • Link a specific object file with no dependencies into an executable:

ld {{path/to/file.o}} {{[-o|--output]}} {{path/to/output_executable}}

  • Link two object files together:

ld {{path/to/file1.o}} {{path/to/file2.o}} {{[-o|--output]}} {{path/to/output_executable}}

  • Dynamically link an x86_64 program to glibc (file paths change depending on the system):

ld {{[-o|--output]}} {{path/to/output_executable}} {{[-I|--dynamic-linker]}} /lib/ld-linux-x86-64.so.2 /lib/crt1.o /lib/crti.o -lc {{path/to/file.o}} /lib/crtn.o