|
|
|
|
|
by cgh
4507 days ago
|
|
Static linking doesn't necessarily link the entire library, unless the entire thing compiles to a single .o file. Linkers are smart enough to only link in the object files needed by the program. So assuming you are only linking in well-designed libraries, I guess it's possible that statically-linked software will be smaller since it will leave out the stuff you aren't using. |
|
Was it worth the effort? Eh. But it was instructive and I'd like to attempt (when I get some time) to try a larger project.