/usr/lib64/ccache/g++ \
   [[snip]]

One more level of expansion of command lines can be obtained by using the '-v' 
parameter:
   g++ -v ...
and a final level by adding -v to collect2, then re-running collect2.  The 
collect2 command
is revealed by "g++ -v".

Also look at the transitive closure of all the [DT_]NEEDED entries in the 
Dynamic section.
Something like:
   for lib in $(find ... -name 'lib*.so*'); do  # every shared library that the 
build uses
      echo $lib
      readelf --dynamic $lib  |  grep NEEDED
   done

If some build succeeds, then "ldd vtkIOXMLCxxTests" gives another list of 
shared libraries.
_______________________________________________
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org

Reply via email to