Use the following flags for linking
-static -static-libgcc -static-libstdc++
Use these three flags to link against the static versions of all dependencies (assuming gcc). Note, that in certain situation you don’t necessarily need all three flags, but they don’t “hurt” either. Therefore just turn on all three.
Check if it actually worked
-
Make sure that there is really no dynamic linkage
ldd yourexecutableshould return “not a dynamic executable” or something equivalent.
-
Make sure that there are no unresolved symbols left
nm yourexecutable | grep " U "The list should be empty or should contain only some special kernel-space symbols like
U __tls_get_addr -
Finally, check if you can actually execute your executable