If I have a library called libfoo.so, and it depends on other libraries:
libfoo.so -> libbar.so libsomething.so libother.so -> libstuff.so
I now have code I want to link against libfoo.so. Is it possible to link libfoo.so and not have to also supply all of the libraries libfoo.so depends on?
ex:
gcc my.c -o hello-world -lfoo