How do I determine the fastest link order?
As an alternative, why not try compiling your libraries to shared libraries rather than static libraries? Where I work, one large projects link time was around 6 minutes, this was for only 5 libraries! My solution was (for a debug version), create .so files alphabetically (libA.so, libB.so etc) so each indivdual link wasn’t too long, … Read more