Can glibc be compiled into one object file which can then be linked to any program. The main purpose is portability here. Because I don’t require to install dynamic libraries this way. Can this be done? If so, how?
Can glibc be compiled into one object file which can then be linked to
Share
You can compile
glibcto.afiles which can be linked into a static executable. The static libraries are built by default.