bold

Drop-in replacement for Apple system linker ld with improved performance.

brewmacoslinux
Try with needOr install directly
Source

About

Drop-in replacement for Apple system linker ld

Commands

ld

Examples

link object files into executable$ ld -o output main.o utils.o -lSystem
link with custom library search path$ ld -o app main.o -L/usr/local/lib -lmylib
create dynamic library from object files$ ld -dylib -o libexample.dylib file1.o file2.o
link with debug symbols included$ ld -o debug_app main.o -lSystem -g
link multiple object files with frameworks$ ld -o app main.o -framework Cocoa -framework Foundation