Tool/software: TI C/C++ Compiler
I need to know which libraries/archives (absolute paths) were used during linking of my library. How to do that with cl6x compiler/linker?
With GCC I am able to use -Wl,--verbose, which (after some postprocessing) will show me list:
$ echo "int main(){}" | gcc -xc++ - -lz -Wl,--verbose | grep succeeded
attempt to open /usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../lib64/crt1.o succeeded
attempt to open /usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../lib64/crti.o succeeded
attempt to open /usr/lib/gcc/x86_64-redhat-linux/4.8.5/crtbegin.o succeeded
attempt to open /tmp/ccJQpZK8.o succeeded
attempt to open /usr/lib/gcc/x86_64-redhat-linux/4.8.5/../../../../lib64/libz.so succeeded
...