Get list of static libraries used in an executable
Since ldd lists only the dynamic libraries, is there a way to extract the information about the static libraries used to create the executable? Answer ldd <exe filename> shows dynamically linked libraries nm <exe filename> shows the symbols in the file. To see which symbols come from static libraries requires running nm against those libraries … Read more