Options (2)
-o, --outputbooleanLink a specific object file with no dependencies into an executable
Example:
ld {{path/to/file.o}} {{[-o|--output]}} {{path/to/output_executable}}-I, --dynamic-linkerbooleanDynamically link an x86_64 program to glibc (file paths change depending on the system)
Example:
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.oExamples (3)
Link a specific object file with no dependencies into an executable
ld path/to/file.o [-o|--output] path/to/output_executableLink two object files together
ld path/to/file1.o path/to/file2.o [-o|--output] path/to/output_executableDynamically 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.omade by @shridhargupta | data from tldr-pages