Displaying 1 result from an estimated 1 matches for "libgccpp".
Did you mean:
libgcc
2012 Nov 19
0
[LLVMdev] LLVM shared libraries and versioning
...3.1-11.fc18
(namely, BugpointPasses.so, LLVMgold.so, libLTO, and libprofile_rt.so).
None of the libraries have DT_SONAME set, which is set by passing
- -soname to ld, and would help ensure that the correct shared library
is loaded at runtime.
Compare to, for example, libgcc:
✗ ls -l /usr/lib64/libgccpp.so.1*
lrwxrwxrwx. 1 root root 17 Oct 28 13:03 /usr/lib64/libgccpp.so.1 ->
libgccpp.so.1.0.3
- -rwxr-xr-x. 1 root root 6800 Jul 27 12:22 /usr/lib64/libgccpp.so.1.0.3
✗ objdump --private-headers /usr/lib64/libgccpp.so.1.0.3 | grep SONAME
SONAME libgccpp.so.1
✗ ls -l /usr/lib64/...