#
0efe23d6 |
| 10-Jul-2001 |
Ruslan Ermilov <ru@FreeBSD.org> |
mdoc(7) police: removed HISTORY info from the .Os call.
|
#
70d51341 |
| 09-Jul-2001 |
Dima Dorfman <dd@FreeBSD.org> |
mdoc(7) police: remove extraneous .Pp before and/or after .Sh.
|
#
5521ff5a |
| 06-Jul-2001 |
Ruslan Ermilov <ru@FreeBSD.org> |
mdoc(7) police: sort SEE ALSO xrefs (sort -b -f +2 -3 +1 -2).
|
Revision tags: release/4.3.0_cvs, release/4.3.0 |
|
#
896eb7d1 |
| 16-Jan-2001 |
Ruslan Ermilov <ru@FreeBSD.org> |
Prepare for mdoc(7)NG.
|
#
58eaff23 |
| 20-Dec-2000 |
Ruslan Ermilov <ru@FreeBSD.org> |
Prepare for mdoc(7)NG.
|
Revision tags: release/4.2.0, release/4.1.1_cvs, release/4.1.0 |
|
#
cbe10916 |
| 30-Jun-2000 |
Sheldon Hearn <sheldonh@FreeBSD.org> |
Only punctuation is an allowed argument type for open-close macros such as Po/Pc, as explained by phantom.
Reported by: billf
|
Revision tags: release/3.5.0_cvs |
|
#
35add0e9 |
| 28-Mar-2000 |
Sheldon Hearn <sheldonh@FreeBSD.org> |
Cross-reference ldd(1) in rtld(1) and vice versa.
|
Revision tags: release/4.0.0_cvs |
|
#
ea5cc7f1 |
| 29-Jan-2000 |
John Polstra <jdp@FreeBSD.org> |
Add a manual page for the ELF dynamic linker. I initially created rtld.1 by means of a repository copy from "src/libexec/rtld-aout/rtld.1". Then I edited it to make it (more) accurate for the ELF dy
Add a manual page for the ELF dynamic linker. I initially created rtld.1 by means of a repository copy from "src/libexec/rtld-aout/rtld.1". Then I edited it to make it (more) accurate for the ELF dynamic linker.
show more ...
|
Revision tags: release/3.4.0_cvs |
|
#
8bd2d9a0 |
| 28-Sep-1999 |
Alexey Zelkin <phantom@FreeBSD.org> |
.Nm += "rtld" apropos(1) now knows about rtld(1) manpage.
|
Revision tags: release/3.3.0_cvs |
|
#
7f3dea24 |
| 28-Aug-1999 |
Peter Wemm <peter@FreeBSD.org> |
$Id$ -> $FreeBSD$
|
Revision tags: release/3.2.0, release/3.1.0, release/3.0.0, release/2.2.8, release/2.2.7, release/2.2.6, release/2.2.5_cvs |
|
#
f6b31571 |
| 13-Sep-1997 |
Wolfram Schneider <wosch@FreeBSD.org> |
spelling corrections.
PR: docs/4450 Submitted by: josh@quick.net
|
#
d5fb0dff |
| 27-May-1997 |
Masafumi Max NAKANE <max@FreeBSD.org> |
Typo fix. PR: 3693 Submitted by: Kazuo Horikawa <k-horik@yk.rim.or.jp>
|
Revision tags: release/2.2.2_cvs, release/2.2.1_cvs, release/2.2.0, release/2.1.7_cvs |
|
#
fce15c9a |
| 22-Feb-1997 |
Peter Wemm <peter@FreeBSD.org> |
Revert $FreeBSD$ to $Id$
|
Revision tags: release/2.1.6_cvs, release/2.1.6.1 |
|
#
ac6c268b |
| 17-Jan-1997 |
John Polstra <jdp@FreeBSD.org> |
Pay attention to the environment variable "LD_IGNORE_MISSING_OBJECTS". If it is set to a nonempty string, then simply skip any missing shared libraries. This came up in a discussion long ago as a po
Pay attention to the environment variable "LD_IGNORE_MISSING_OBJECTS". If it is set to a nonempty string, then simply skip any missing shared libraries. This came up in a discussion long ago as a potentially useful feature at sysinstall time. For example, an X11 utility could be used without the X libraries being present, provided the utility had a mode in which no X functions were actually called.
show more ...
|
#
1130b656 |
| 14-Jan-1997 |
Jordan K. Hubbard <jkh@FreeBSD.org> |
Make the long-awaited change from $Id$ to $FreeBSD$
This will make a number of things easier in the future, as well as (finally!) avoiding the Id-smashing problem which has plagued developers for so
Make the long-awaited change from $Id$ to $FreeBSD$
This will make a number of things easier in the future, as well as (finally!) avoiding the Id-smashing problem which has plagued developers for so long.
Boy, I'm glad we're not using sup anymore. This update would have been insane otherwise.
show more ...
|
#
af202156 |
| 13-Jan-1997 |
Wolfram Schneider <wosch@FreeBSD.org> |
Sort cross references.
|
#
aeea55e4 |
| 12-Jan-1997 |
John Polstra <jdp@FreeBSD.org> |
Correct typos and spelling errors.
|
#
0db65949 |
| 12-Jan-1997 |
John Polstra <jdp@FreeBSD.org> |
Add support for the LD_BIND_NOW environment variable. If it is set to a nonempty string, then function calls are relocated at program start-up rather than lazily. This variable is standard on Sun a
Add support for the LD_BIND_NOW environment variable. If it is set to a nonempty string, then function calls are relocated at program start-up rather than lazily. This variable is standard on Sun and SVR4 systems.
The dlopen() function now supports both lazy and immediate binding, as determined by its "mode" argument, which can be either 1 (RTLD_LAZY) or 2 (RTLD_NOW). I will add defines of these symbols to <dlfcn.h> as soon as I've done a little more checking to make sure they won't cause collisions or bootstrapping problems that would break "make world".
The "LD_*" environment variables which alter dynamic linker behavior are now treated as unset if they are set to the empty string. This agrees with the standard SVR4 conventions for the dynamic linker.
Add a work-around for programs compiled with certain buggy versions of crt0.o. The buggy versions failed to set the "crt_ldso" member of the interface structure. This caused certain error messages from the dynamic linker to begin with "(null)" instead of the pathname of the dynamic linker.
show more ...
|
#
43d7fd03 |
| 26-Dec-1996 |
Steven Wallace <swallace@FreeBSD.org> |
Fix spelling error in manpage.
|
#
16804804 |
| 18-Oct-1996 |
John Polstra <jdp@FreeBSD.org> |
Fix two minor typos in the manual page.
|
Revision tags: release/2.1.5_cvs |
|
#
5584286a |
| 01-Oct-1996 |
Peter Wemm <peter@FreeBSD.org> |
Update to handle new version ld.so.hints and info in executable for configurable fallback search paths, as well as new crt interface version.
Also: - even faster getenv(), get all environment varia
Update to handle new version ld.so.hints and info in executable for configurable fallback search paths, as well as new crt interface version.
Also: - even faster getenv(), get all environment variable settings in a single pass. - ldd printf-like format specifications - minor code cleanups, one vsprintf -> vsnprintf (harmless)
The library search sequence is a little more complete now. Before, it'd search $LD_LIBRARY_PATH (by opendir/readdir/closedir), then read the hints file, then read /usr/lib (again by scanning thr directory). It would then fail if there was no "found" library.
Now, it does LD_LIBRARY_PATH and the hints file the same, but then uses a longer fallback path. The -R path is fetched from the executable if specified at build time, the ldconfig path is appended, and /usr/lib is appended to that. Duplicates are suppressed. This means that simply placing a new library in /usr/local/lib will work (the same as it did in /usr/lib) without needing ldconfig -m. It will find it quicker if the ldconfig is run though.
Similar changes have been made to the NetBSD ld.so, but ours is rather different now due to John Polstra's speedups and fixes from a while back.
The ldd printf-like format support came direct from NetBSD.
Reviewed by: nate, jdp
show more ...
|
#
e0e5145c |
| 24-Sep-1996 |
Wolfram Schneider <wosch@FreeBSD.org> |
add missing comma(s) in .Xr macros
|
#
dd2b0768 |
| 20-Apr-1996 |
John Polstra <jdp@FreeBSD.org> |
Implement support for LD_PRELOAD in the dynamic linker. Remove descriptions of LD_NO_INTERN_SEARCH and LD_NOSTD_PATH from the manual page, since they are not supported.
Submitted by: Doug Ambrisko
Implement support for LD_PRELOAD in the dynamic linker. Remove descriptions of LD_NO_INTERN_SEARCH and LD_NOSTD_PATH from the manual page, since they are not supported.
Submitted by: Doug Ambrisko <ambrisko@ambrisko.roble.com>
show more ...
|
Revision tags: release/2.1.0_cvs |
|
#
c68c38c8 |
| 05-Oct-1995 |
Nate Williams <nate@FreeBSD.org> |
This is a FreeBSD manpage, not a NetBSD manpage. :)
|
#
19d57e6d |
| 26-Aug-1995 |
Joerg Wunsch <joerg@FreeBSD.org> |
Import Paul Kranenburg's man page for ld.so (aka. rtld).
Obtained from: NetBSD
|