I've used zlib for ages and never thought about the fact that it is named slightly unconventionally. While most libraries on Linux follow the naming convention of lib<name>.so
for shared objects and lib<name>.a
for archives, zlib is named zlib.so
/zlib.a
. My question is: how does gcc/ld know to look for zlib.so
when I use -lz
as a link flag?
I understand that for linking, gcc invokes ld, which searches for libraries in certain default paths and any path specified with -L
, and it appends the lib
and .so
or .a.
parts as necessary. Oddly, gcc's manual page for linking options only mentions that the linker can find archives; there is no mention of the .so
extension. The man page for ld at least mentions both extensions, but still only mentions searching by prepending lib
to the specified library name. How does ld know to add the lib
after the z
for zlib? I've never seen this happen to another library.
libz.so
, which is usually in/lib
or/lib64
, but might in some distributions actually be in/usr/lib[64]
... If you have azlib.so
that applications are using, the applications are callingdlopen()
, so the linking is not done byld
(orld.so
). – twalberg-lzlib
and provide a-L
path to azlib.so
. – pattivacek