ali hagigat <hagigatali@xxxxxxxxx> writes: > What is the default search path of my linker, GNU ld considering the > following command and the emulation modes supported: > > root> ld -V > GNU ld version 2.19.51.0.14-34.fc12 20090722 > Supported emulations: > elf_i386 > i386linux > elf_x86_64 The linker itself doesn't have much of a default search path. The search path is passed to the linker by the compiler. Run "gcc -v" to see how gcc invokes the linker and the set of -L options that it passes. Ian