makefile - How to load a .so file statically with make? -
is there makefile modification can me load shared library(*.so file) statically?
you can't link shared library statically (or share static one); they're different animals. can build static library object files, or if that's not possible can convert shared library static 1 tool statifier, link that.
a makefile kind of scripting tool; automates tasks hand. must figure out how hand before ask make it.
Comments
Post a Comment