18 November 2022
Static linking links libraries at compile time, copying them to the final binary.
Dynamic linking loads and links libraries at runtime, loading them to memory.
Only the name of the shared libraries is saved at compile time.
These names are saved in a PLT (Procedure Linkage Table)
Static
Dynamic
$ ld [options] objfile
ld
combines several object and archive files, relocates their data and ties up symbol references. Usually, the last step in compiling a program is to run ld
.
$ gcc hello.c -static -o hello
$ gcc hello.c -o hello
Check the type of linking
$ file /usr/bin/gcc
/usr/bin/gcc: ELF 64-bit LSB executable, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=017fc52acbca077c9bc6a4e8f04dd90eb5385243, for GNU/Linux 4.4.0, stripped
Check dynamically linked libraries
$ ldd /bin/gcc
linux-vdso.so.1 (0x00007fff6377e000)
libc.so.6 => /usr/lib/libc.so.6 (0x00007fcd238f2000)
/lib64/ld-linux-x86-64.so.2 => /usr/lib64/ld-linux-x86-64.so.2 (0x00007fcd23b02000)