ELF ldconfig only maintains the search list, there is no hints
Details
- Reviewers
emaste dim - Group Reviewers
manpages - Commits
- rGa19e14ca2d36: ldconfig(8): update manpage to reality
Diff Detail
- Repository
- rG FreeBSD src repository
- Lint
Lint Skipped - Unit
Tests Skipped
Event Timeline
The new version doesn't mention what is the limitation on shared library names.
Normally they are:
libXx.so -> libXx.so.A libXx.so.A -> libXx.so.A.B.C libXx.so.A.B.C
but is this also allowed?:
libXx.so -> libXx.so.A.B libXx.so.A.B -> libXx.so.A.B.C libXx.so.A.B.C
New version is quite explicit that ldconfig does not care about libraries or libraries names at all.
sbin/ldconfig/ldconfig.8 | ||
---|---|---|
6 | Portions of this documentation were written by | |
51–65 | maybe .Nm | |
85–86 | I'm not sure we need to keep this text at all - "the shared libraries which are found" implies we are building a list at ldconfig time? | |
89 | additional shared library search directories. | |
113 | Are they printed? | |
126 | -r also performs a search and prints the libraries found? | |
144–145 | should this perhaps be "only load shared libraries from paths found in the hints file"? |
Big improvement overall, thanks for cleaning up after my a.out removal change. One little note inline, but we can iterate on it in the tree etc. later on.
sbin/ldconfig/ldconfig.8 | ||
---|---|---|
56–59 | IMO we don't really need this either - for someone unfamiliar with the history of a.out this seems like we're telling them that they don't need to do something that they wouldn't anyway. But not a big deal. |
sbin/ldconfig/ldconfig.8 | ||
---|---|---|
56–59 | Mmm, no, this does not have anything to do with a.out. It is about -rpath (actually ELF feature, I do not remember anything similar in Sun 4.x/FreeBSD a.out so). |