1 example for ld
# ld - a linker
# link two object files with a specified output name
ld -o hello-world ./hello.o ./world.o
# instruct ld to use name all input files as they are processed
ld -o hello-world ./hello.o ./world.o -t
ld -o hello-world ./hello.o ./world.o --trace