Let\'s say we got a main executable called \"my_app\" and it uses several other libraries: 3 libraries are linked statically, and other 3 are linked dynamically.
In which or
The dependencies for linking a library or executable have to be present at link-time, so you cannot link libXC before libXB is present. It doesn't matter if statically or dynamically.
Start with the most basic one, which has no (or just outside of your project) dependencies.