README 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860
  1. Apr 20, 2001 -- Manuel Novoa III
  2. Inital port for uClibc from debian ld.so_1.9.11-9.tar.gz.
  3. Removed a.out support.
  4. "make" generates the ld-linux-uclibc.so.1, libdl.so.1, ldd, ldconfig
  5. suitable for the target platform.
  6. "make DEVEL=true" generates the same files, but ld-linux-uclibc.so.1 and
  7. ldconfig are modified to not conflict with the devel platform system
  8. libs. (This is only of use if TARGET_ARCH == NATIVE_ARCH.) These
  9. modified versions ignore /lib and /usr/lib and look for shared libs
  10. only in $(INSTALL_DIR)/lib. The modified ldconfig writes ld.so.cache
  11. in $(INSTALL_DIR)/etc.
  12. The above assumes you've set the DYNAMIC_LINKER to /lib/ld-linux-uclibc.so.1
  13. in extra/gcc-uClibc/Makefile.
  14. Todo:
  15. Remove unneeded code in util/ldd.c.
  16. Link against static uClibc instead of using custom routines. ???
  17. Lots more cleanup... especially the arch-dependent Makefiles.
  18. ****************** original ld.so.lsm file **************************
  19. Begin3
  20. Title: Linux shared, dynamic linker and utilities.
  21. Version: 1.9.11
  22. Entered-date: 01MAY99
  23. Description: This package contains ld.so, ld-linux.so, ldconfig,
  24. ldd and libdl.
  25. Keywords: dynamic linker, shared library, ld.so, ld-linux.so,
  26. ldconfig, ldd, libdl
  27. Author: david@ods.com (David Engel)
  28. Maintained-by: david@ods.com (David Engel)
  29. Primary-site: tsx-11.mit.edu /pub/linux/packages/GCC
  30. ld.so-1.9.11.tar.gz
  31. Alternate-site: sunsite.unc.edu /pub/Linux/GCC
  32. ld.so-1.9.11.tar.gz
  33. Platform: Linux 2.0.0 or later.
  34. Copying-policy: Copyrighted but freely distributable.
  35. End
  36. *********************************************************************
  37. Original README starts here
  38. *********************************************************************
  39. This package contains my ELF dynamic linkers (ld-linux.so.1), dynamic
  40. linker library (libdl.so.1) and utilities (ldconfig and ldd) for Linux.
  41. You need Linux kernel 2.0.0 or later with ELF support compiled in
  42. (i.e. not loaded as a module) to use this package.
  43. The dynamic linker is used to bootstrap programs and load shared
  44. libraries at startup. The dynamic linker library is used to
  45. dynamically load shared libraries after a program is running.
  46. Ldconfig is used to automatically update the symbolic links to shared
  47. libraries and build the cache file used by the dynamic linker. Ldd is
  48. used to list the shared libraries used by a program.
  49. Please see the included manual pages for further details.
  50. To install, simply run "sh instldso.sh" as root. Ready-to-go versions
  51. of all end-products are provided so nothing should need to be compiled
  52. or linked. If you are still using libc5 as your primary development
  53. library, you should use the "--devfiles" option when running
  54. instldso.sh to install the file needed to compile with libdl.
  55. ELF versions of gcc, binutils and libc are now required to compile
  56. everything, including the old, unsupported, a.out dynamic linker.
  57. Finally, an optimization level of O2 or higher must be used to compile
  58. ld-linux.so and libdl.so due the use of inline functions.
  59. Notable contributors to this package include Eric Youngdale, Peter
  60. MacDonald, Hongjiu Lu, Linus Torvalds, Lars Wirzenius, Mitch D'Souza,
  61. Rik Faith, Andreas Schwab and Adam Richter (not necessarily in that
  62. order).
  63. ###################### IMPORTANT NOTICES #############################
  64. A.OUT SUPPORT:
  65. As of ld.so-1.9.0, the old, a.out dynamic loader is no longer
  66. officially supported. The code is still included and built, but I
  67. make no promises that it will work. I will accept patches for it,
  68. but they will not be tested by me.
  69. GLIBC (AKA LIBC6) SUPPORT:
  70. As of ld.so-1.9.0, the main focus of this package is to ease the
  71. transition to libc6. No significant, new features are expected to be
  72. added. If you need new features, switch to libc6.
  73. Except for libpthread.so, the sonames of the core libraries provided
  74. with libc6 have been chosen so they do not conflict with those
  75. provided by libc5 and ld.so. However, the current plan is not use
  76. new, nonconflicting sonames for other libraries such as ncurses and
  77. X11. This presents two problems. First, libraries using the same
  78. soname for both libc5 and libc6 can not be placed in the same
  79. directory. Second, the dynamic linkers need to make sure not to load
  80. a library for the wrong version of libc.
  81. The first problem is easy. Just move the old, libc5-based libraries
  82. to new directories (e.g. /lib/libc5-compat, /usr/lib/libc5-compat,
  83. etc.) and add those directories to /etc/ld.so.conf. Then install the
  84. new, libc6-based versions in the standard places.
  85. The second problem is more difficult. Ideally, the dynamic linkers
  86. would be changed to perform a complete dependency analysis on every
  87. library to be loaded to make sure the wrong versions aren't used.
  88. This approach doesn't seem worth the added complexity, especially
  89. since we now have symbol versioning for ELF libraries. Instead a
  90. simpler approach will be used, at least initially.
  91. Ldconfig has been modified to perform a (currently simple) dependency
  92. analysis on libraries and to store an indication in /etc/ld.so.cache
  93. of whether a library is for libc5, libc6 or an unknown libc. The
  94. dynamic linkers then only need to make a simple check at run-time to
  95. make sure they don't load the wrong version of a library.
  96. The dynamic linker for libc5 provided in this package, has already
  97. been modified to use the new information in /etc/ld.so.cache. For
  98. glibc versions 2.0.1 and earlier, the dynamic linker for libc6 needs
  99. the patch contained in glibc.patch. You should apply the patch and
  100. rebuild glibc before using the new ldconfig.
  101. As stated above, the dependency analysis currently done by ldconfig is
  102. rather simple. Basically, it looks for the sonames used by the
  103. various versions of libc, libm and libdl. For any approach using a
  104. dependency analysis such as this to work, it is very important that
  105. shared libraries be built with complete dependency information. This
  106. can be done by using the appropriate -l options when running 'gcc
  107. -shared'. For example, when building libfoo.so which depends on libc
  108. and libbar, you should add -lbar and -lc gcc command line.
  109. ######################################################################
  110. Changes in version 1.9.11:
  111. Fixed a bug in ld-linux.so where a reference to an
  112. undefined symbol could cause a segfault.
  113. Added a clarification for LD_PRELOAD to the ld.so manual
  114. page and added a symlink for ld-linux.so (Bug#33123).
  115. Don't install ldd for Debian except for the m68k arch
  116. because glibc 2.1 now includes it (Bug#35458).
  117. Changes in version 1.9.10:
  118. Changed ldconfig to issue a warning and not overwrite a
  119. regular file with a symlink (Bug#30859).
  120. Changed Debian packaging to conflict with and replace the
  121. ldconfig package (Bug#29398).
  122. Changes in version 1.9.9:
  123. Changed ld-linux.so and libdl.so to match glibc by not
  124. allowing user preloads of system libraries into setu/gid
  125. binaries unless the library itself is setuid.
  126. Fixed problems in ld-linux.so on the sparc architecture
  127. (Juan Cespedes).
  128. Changes in version 1.9.8:
  129. Changed ldconfig to allow the expected type for all
  130. libraries in a directory to be optionally specified
  131. (Mark Phillips). See the ldconfig man page.
  132. Changed ldconfig to use the same type names used in the
  133. change above when the -p option is used.
  134. Changes in version 1.9.7:
  135. Changed ldd for m68k to use /lib/ld.so.1 instead of
  136. /lib/ld-linux.so.2.
  137. Added support for dladdr to libdl.so (Eduard Gode).
  138. Fixed a small memory leak in libdl.so (Richard Garnish).
  139. Fixed a bug in ldconfig when the -l option was used on a
  140. filename without a '/' in it.
  141. Updated the man pages (Bug#6404, Bug#9721, Bug#10652,
  142. Bug#13494 and Bug#14127). They could still use some work.
  143. No longer install the info page since it's way out of date.
  144. Fixed minor Debian packaging problems (Bug#13160,
  145. Bug#15577 and Bug#19345).
  146. Changes in version 1.9.6:
  147. Changed ldd to not use the glibc dynamic linker when run
  148. on a libc5-based shared library.
  149. Added a -q option to ldconfig which causes warnings not
  150. to be printed (Bob Tinsley).
  151. Dropped support for the Debian libdl1-dev package.
  152. Changed ld-linux.so to be compilable with gcc 2.8.0 (Sven
  153. Verdoolaege)
  154. Changes in version 1.9.5:
  155. Fixed a bug in ldd where ld-linux.so.2 was not called
  156. correctly when run on shared libraries.
  157. Fixed a problem in the previous version where some
  158. Makefiles were not architecture independent.
  159. Changes in version 1.9.4:
  160. Fixed a bug in ld.so introduced in the previous version
  161. which broke preloads.
  162. Turned a.out support back on by default, at least for the
  163. time being. There are no promises to keep it.
  164. Changes in version 1.9.3:
  165. Fixed buffer overflow bugs in ld-linux.so and ld.so.
  166. Changed the README file a little to clarify a couple of
  167. things.
  168. Changed ldconfig to chroot to the specified directory when
  169. the new -r option is used (Bob Tinsley).
  170. Changes in version 1.9.2:
  171. Removed /usr/local/lib from the default /etc/ld.so.conf
  172. for Debian (Bug#8181).
  173. Changed ldconfig to be 64-bit clean (H.J. Lu).
  174. Changes in version 1.9.1:
  175. Changed ldconfig to try to determine which libc a
  176. library is for even if it doesn't have an soname.
  177. Fixed a bug in ldconfig where an older library using
  178. the glibc naming convention would be used instead of
  179. a newer library.
  180. Changed to ld-linux.so and libdl.so to not require the
  181. libc5 headers in order to compile.
  182. Changed ldconfig and ldd to be compilable with either
  183. libc5 or libc6.
  184. Changes in version 1.9.0:
  185. Changed to not build the old, a.out dynamic loader by
  186. default.
  187. Changed instldso.sh to require the --force option to
  188. make sure users read the README file.
  189. Changed instldso.sh to not install the libdl.so
  190. development files unless the --devfiles option is used.
  191. Changed instldso.sh to not strip binaries and libraries
  192. if the --no-strip option is used.
  193. Changed the Debian packaging to put the development files
  194. which conflict with glibc in a new libdl1-dev package.
  195. Changed ldd to use the glibc dynamic linker, if it is
  196. available, when run on a shared library.
  197. Changed ld-linux.so to print the load addresses of
  198. libraries, ala glibc, when run by ldd.
  199. Changed ld-linux.so to allow the libraries listed in
  200. LD_PRELOAD to be separated by white space in addition to
  201. colons.
  202. Changed ld-linux.so to load the libraries listed in
  203. LD_PRELOAD for setu/gid programs as long as they can be
  204. loaded securely.
  205. Changed ldconfig to update the symlinks for the dynamic
  206. linkers.
  207. Changed ldconfig to try to determine if an ELF library is
  208. intended for libc5 or libc6 and save the infomation in the
  209. cache. The mechanism used is rather simplistic and may
  210. need to be enhanced.
  211. Changed ldconfig to print the type of ELF library when
  212. printing the cache.
  213. Changed ld-linux.so to only load ELF shared libraries for
  214. use with libc5 or an unknown libc.
  215. Changes in version 1.8.10:
  216. Fixed a bug in ldconfig where a symlink could be used
  217. instead of a regular file.
  218. Fixed a Debian packaging problem for the sparc
  219. architecture.
  220. Changes in version 1.8.9:
  221. Changed ldconfig to only cache the symlinks it creates.
  222. This make the behavior of the dynamic linkers consistent
  223. with how they would behave if a cache was not used.
  224. Changed ldconfig to cache the symlinks that it finds but
  225. use the name of the symlink as the soname instead of the
  226. actual soname.
  227. Changes in version 1.8.8:
  228. Minor documentation updates to reflect recent changes.
  229. Changed ld.so and ld-linux.so to perform more complete
  230. validation on ld.so.cache before using it.
  231. Changed ldconfig to accept libraries with inconsistent
  232. sonames since glibc is going to use them. A warning is
  233. still printed in debug mode.
  234. Changed the install script to not strip _dl_debug_state
  235. from ld-linux.so since gdb needs it.
  236. More sparc fixes (Derrick Brashear).
  237. Changed ldconfig to not issue a warning when a linker
  238. script disguised as a shared library is found.
  239. Fixed a bug in ld-linux.so where some registers were
  240. not preserved on the first call to a function causing
  241. problems for non-C-like languages (Tim Renouf).
  242. Fixed a bug in ld-linux.so where global variables were
  243. not always mapped correctly across dynamically loaded
  244. libraries (Mikihiko Nakao).
  245. Converted to new Debian source packaging format (Shaya
  246. Potter).
  247. Changes in version 1.8.6/7:
  248. Never released as some unofficial patches used these
  249. version numbers.
  250. Changes in version 1.8.5:
  251. Fixed a bug in ld.so introduced in the previous changes.
  252. Changes in version 1.8.4:
  253. Changed ldconfig to completely ignore symbolic links.
  254. Changed ldconfig to issue the warning concerning an
  255. inconsistent soname in non-verbose mode.
  256. Changed ld-linux.so back to not keep ld.so.cache mapped
  257. at all times.
  258. Changed Debian packaging to compress man pages, strip all
  259. binaries (Bug#5125) and include a shlibs file.
  260. Changes in version 1.8.3:
  261. Changed ld-linux.so to process LD_PRELOAD before
  262. /etc/ld.so.preload.
  263. Fixed a Debian packaging problem where libdl might not
  264. be available if other packages were upgraded at the same
  265. time (Debian Bug#4728).
  266. Changed ldd to always exit with status 1 if any errors
  267. occur (Debian Bug#4188).
  268. Fixed some minor problems in instldso.sh (Mike Castle and
  269. Wolfgang Franke).
  270. Changed ldconfig to issue a warning in verbose mode when
  271. skipping a library because the soname doesn't match.
  272. More sparc fixes (Miguel de Icaza).
  273. Don't link with -N when building ld.so (Alan Modra).
  274. Changed ld-linux.so to better support position-dependant
  275. libraries (NIIBE Yutaka).
  276. Changes in version 1.8.2:
  277. Added a texinfo file for ld.so and libdl (Michael
  278. Deutschmann).
  279. Minor sparc and installation changes (Elliot Lee).
  280. Added multiple architecture support for Debian (Leland
  281. Lucius).
  282. Changed libdl to better support RTLD_NEXT (Eric
  283. Youngdale). Note: the exact meaning of ETLD_NEXT is
  284. still not clear in all cases.
  285. Removed some libc dependencies from libdl. Still need
  286. to remove malloc and free.
  287. Changes in version 1.8.1:
  288. Changed ld.so to be compiled as ELF. This also means
  289. that ELF support is now required. A.out support is
  290. still optional.
  291. Changed ld-linux.so and libdl.so to use the rpath in the
  292. executable instead of in the invoking shared library.
  293. More m68k fixes (Andreas Schwab).
  294. Various sparc fixes (Miguel de Icaza).
  295. Changed ldcnnfig to ignore libraries ending in '~'.
  296. Changed ldconfig to allow alternative conf and cache
  297. files to be specified on the command-line.
  298. Changed libdl.so to work when dlsym is passed a NULL
  299. handle pointer.
  300. Changes in version 1.8.0:
  301. Changed ld-linux.so to be more liberal when checking to
  302. see if a library is already loaded. This should avoid
  303. the duplicate loading problem for programs linkeed with
  304. the -rpath option.
  305. Various m68k fixes (Andreas Schwab).
  306. Changed ld.so to only use LD_AOUT_LIBRARY_PATH and
  307. LD_AOUT_PRELOAD and ld-linux.so to only use
  308. LD_LIBRARY_PATH and LD_PRELOAD. LD_ELF_LIBRARY_PATH
  309. and LD_ELF_PRELOAD are no longer supported.
  310. Changed ld-linux.so to allow debugging of shared and
  311. dynamically loaded libraries (H.J. Lu, Andreas Schwab).
  312. Changed ld-linux.so to preload ELF shared libraries
  313. listed in /etc/ld.so.preload. This allows secure
  314. preloads, even for setuid/setgid programs.
  315. Changed ld-linux.so to keep ld.so.cache mapped at all
  316. times.
  317. Changed ldconfig to allow #-style comments in ld.so.conf.
  318. Removed various compiler warnings (Richard Sladkey and
  319. David Engel).
  320. Changed ldd to work on ELF shared libraries. This may
  321. need a little more work.
  322. Changes in version 1.7.14:
  323. Changed ldconfig to recognize ELF shared libraries
  324. generated by post-2.6 versions of ld (Andreas Schwab).
  325. Changed ldconfig to not remove stale links that do not
  326. have a version number since they may be needed by ld.
  327. Changes in version 1.7.13:
  328. Fixed a problem in ld-linux.so where a program linked
  329. with a shared library that was not used could result in
  330. a segmentation fault (H.J. Lu).
  331. Changes in version 1.7.12:
  332. Fixed a problem in libdl.so where the wrong library
  333. could be marked as global when RTLD_GLOBAL was used
  334. (Lars Heete).
  335. Installed dlfcn.h with libdl.so instead of requiring
  336. it to be supplied with libc.
  337. Removed support for libldso.a since it was nearly
  338. impossible to use anyway.
  339. Changed ldd to detect when the program being checked
  340. exited abnormally.
  341. Changes in version 1.7.11:
  342. Changed ld.so and ld-linux.so to delete all variations
  343. of LD_PRELOAD and LD_LIBRARY_PATH for set[ug]id programs,
  344. This makes it harder for broken set[ug]id programs to be
  345. compromised.
  346. Fixed a problem in libdl.so where dlsym would not accept
  347. the handle returned from dlopen(0, *).
  348. Changes in version 1.7.10:
  349. Changed ld-linux.so and libdl.so to support RTLD_GLOBAL
  350. (Eric Youngdale).
  351. Changes in version 1.7.9:
  352. Fixed a problem in ld-linux.so in detecting when the
  353. new user/group information is provided by the kernel.
  354. Fixed a problem in ld-linux.so where a buffer could be
  355. overflowed if a large number of libraries were loaded
  356. (Thomas Moore).
  357. Changes in version 1.7.8:
  358. Changed the Makefiles and install scripts to support
  359. a.out- and ELF-only configurations.
  360. Changed ld-linux.so to use the user/group information
  361. provided by linux 1.3.23+ instead of making syscalls
  362. to get it.
  363. Changed libdl.so to support RTLD_NEXT (Glenn Fowler).
  364. Changed libdl.so to only execute the fini sections
  365. instead of completely closing libraries at exit (Glenn
  366. Fowler).
  367. Changed ld.so and ld-linux.so to print the required
  368. cache version when a mismatch is detected.
  369. Changed ld-linux.so to not require on /dev/zero (Ralph
  370. Loader).
  371. Minor m68k cleanups (Andreas Schwab).
  372. Changes in version 1.7.7:
  373. Fixed problems compiling with recent 1.3.x kernels.
  374. Changed ld-linux.so to not use MAP_DENYWRITE until the
  375. permission issue regarding it is resolved.
  376. Changes in version 1.7.6:
  377. Fixed a bug in ld-linux.so dealing with a zero-length
  378. LD_{ELF_}PRELOAD.
  379. Changed ld.so and ld-linux.so to truncate all variations
  380. of LD_PRELOAD and LD_LIBRARY_PATH for set[ug]id programs.
  381. Changes in version 1.7.5:
  382. Changed ldconfig to recognize libraries without any
  383. version number (eg. libXYZ.so).
  384. Changed ldconfig to not generate a corrupt cache when
  385. the disk is full or other write errors occur.
  386. Changed ld-linux.so to map files with MAP_DENYWRITE to
  387. keep them from being changed while the file is in use
  388. (Rick Sladkey).
  389. Changed libdl to not overwrite the scope pointer of a
  390. library if it was already loaded (H.J. Lu).
  391. Changed ld-linux.so so gdb can be used on constructors
  392. (Eric Youngdale).
  393. Changed ldconfig to ignore ELF libraries where the soname
  394. does not match the file name on the assumption that it is
  395. a used at compile-time (eg. libcurses.so -> libncruses.so).
  396. Changes in version 1.7.4:
  397. Changed ld-linux.so and libdl to use the appropriate
  398. rpaths when searching for shared libraries (Eric
  399. Youngdale).
  400. Changed ld-linux.so to search rpath before using the
  401. cache. This more closely conforms to the IBCS standard.
  402. Changes in version 1.7.3:
  403. Changed ld-linux.so to only print a library name the
  404. first time it is loaded when run from ldd.
  405. Fixed a bug in ldconfig where an invalid cache could be
  406. generated if a directory was specified multiple times in
  407. ld.so.conf.
  408. Changed ld-linux.so so it will return the address of a
  409. weak symbol when called from dlsym in libdl (Eric
  410. Youngdale.
  411. Changes in version 1.7.2:
  412. Changed libdl.so again to fix the undefined foobar
  413. problem.
  414. Changes in version 1.7.1:
  415. Changed libdl so it will compile at optimization level
  416. O3 or higher.
  417. Changed ldconfig to always create the cache file with
  418. mode 644.
  419. Changed ldconfig to not ingore valid symlinks.
  420. Changed ldconfig to use the library name as the soname
  421. for ELF libraries that do not have an soname entry.
  422. Changed ld-linux.so to print the actual, requested library
  423. name at the time it is loaded instead of trying to figure
  424. it out after the fact.
  425. Changes in version 1.7.0:
  426. Changed ldconfig to read the actual soname from the image
  427. for ELF libraries and make it available to ld-linux.so.
  428. The soname for DLL libraries is still determined by
  429. truncating the minor numbers from the image file name.
  430. Changed ldconfig to no longer support the undocumented
  431. sort options.
  432. Changed ld.so to require a valid cache to find libraries
  433. in directories specified in ld.so.conf. /usr/lib and /lib
  434. are still searched as a last resort. Ld-linux.so already
  435. operated this way.
  436. Fixed a bug in libldso.a where the arguments to
  437. shared_loader were not parsed correctly (Wolfram Gloger).
  438. Added support for RELA-style relocations under Linux/68k
  439. (Andreas Schwab).
  440. Changed ld-linux.so to only map the cache once for all
  441. libraries instead of individually for each library.
  442. Changed ld-linux.so continue searching the cache instead of
  443. giving up when failing to load the first entry found.
  444. Changed ld-linux.so to produce output similar to ld.so when
  445. run from ldd or when errors occur.
  446. Changes in version 1.6.7:
  447. Changed the install scripts to make sure that ld.so and
  448. ld-linux.so are always usable.
  449. Added support for Linux/Sparc (Eric Youngdale).
  450. Added support for Linux/68k (Andreas Schwab).
  451. Fixed various bugs in ld-linux.so dealing with closing
  452. files, unmapping memory, dereferencing NULL pointers and
  453. printing library names (David Engel, Eric Youngdale and
  454. Andreas Schwab).
  455. Replaced the manual page for libdl with a freely
  456. distributable one (Adam Richter).
  457. Fixed a bug in ld-linux.so where LD_LIBRARY_PATH and
  458. LD_PRELOAD were not cleared for setuid/setgid programs.
  459. Fixed a bug in libdl where dlsym would not return the
  460. correct address of a symbol if it was redefined in another
  461. library (Oleg Kibirev).
  462. Changed ld-linux.so to use the following order to search
  463. for libraries: LD_{ELF_}LIBRARY_PATH, ld.so.cache, rpath,
  464. /usr/lib and /lib.
  465. Changed ld-linux.so to not needlessly allocate memory when
  466. using ld.so.cache.
  467. Changes in version 1.6.6:
  468. Changed ldconfig to not warn about removing stale links
  469. unless the -v option is specified.
  470. Added manual pages for libdl (from FreeBSD/Sun)
  471. Fixed a bug in ld.so dealing with preloading of objects
  472. generated by recent versions of ld (Mitch D'Souza).
  473. Fixed bugs in ldd where some errors were either not
  474. detected or not printed.
  475. Fixed a bug in ld-linux.so where the trailing nul in a
  476. library name was not being copied (Owen Taylor).
  477. Changes in version 1.6.5:
  478. Changed ldconfig to remove stale symbolic links.
  479. Added debug hooks in ld-linux.so and libdl.so to be used
  480. by a future version of gdb (Eric Youngdale).
  481. Changes in version 1.6.4:
  482. Change ld-linux.so to print on stdout instead of stderr
  483. when run from ldd.
  484. Added support for Debian GNU/Linux packaging.
  485. Changes in version 1.6.3:
  486. Fixed a bug in libdl when closing a library (H.J. Lu).
  487. Changes in version 1.6.2:
  488. Changed the error message printed by ldd when a file is
  489. not a.out or ELF. It used to only list a.out formats.
  490. Changed ldconfig to no longer cache and set up links for
  491. ld-linux.so.
  492. Changed ld-linux.so and libdl to not conflict with upcoming
  493. changes in kernel header files.
  494. Changed ld-linux.so to not print preloaded libraries.
  495. Changes in version 1.6.1:
  496. Updated the installation script.
  497. Changed ld.so and ld-linux.so to look for LD_AOUT_PRELOAD
  498. and LD_ELF_PRELOAD, respectively, before LD_PRELOAD.
  499. Changed ld.so and ld-linux.so to use LD_AOUT_LIBRARY_PATH
  500. and LD_ELF_LIBRARY_PATH, respectively, instead of
  501. AOUT_LD_LIBRARY_PATH and ELF_LD_LIBRARY_PATH.
  502. Changes in version 1.6.0:
  503. Changed ldconfig to process libraries which do not have
  504. a minor version or patch level number.
  505. Incorporated ld-linux.so and libdl.so.
  506. Changed ld.so and ld-linux.so to not miss entries in the
  507. cache when the fully qualified library is requested.
  508. Changed ldconfig to use stdout instead of stderr when
  509. printing the cache.
  510. Changes in version 1.5.3:
  511. LD_PRELOAD enhancements (Tristan Gigold).
  512. LD_PRELOAD patch for linux-68k (Andreas Schwab).
  513. Changes in version 1.5.2:
  514. More ELF changes (Mitch D'Souza).
  515. Changed ldconfig to also update the link for ld-linux.so.
  516. Changes in version 1.5.1:
  517. More ELF and LD_PRELOAD changes (Mitch D'Souza).
  518. Changes in version 1.5.0:
  519. Chnaged all executables to QMAGIC (Mitch D'Souza and Rick
  520. Sladkey).
  521. Added preliminary support for ELF to ldd and ldconfig (Eric
  522. Youndale and H.J. Lu).
  523. Added support for LD_PRELOAD to ld.so (Mitch D'Souza).
  524. Removed the "advertising" clause from the copyright notices
  525. in all source files.
  526. Changes in version 1.4.4:
  527. Changed ldconfig to support QMAGIC libraries.
  528. Fixed a bug in ld.so where some of the error messages had
  529. transposed arguments.
  530. Changes in version 1.4.3:
  531. Fixed an obscure bug in ld.so where an index was not being
  532. incremented when a library was not found using the cache.
  533. Changes in version 1.4.2:
  534. Changed ldconfig to issue a warning and continue instead
  535. of an error and exiting when a link can't be updated.
  536. This is useful when some libraries are imported on read-
  537. only file systems, such as an NFS mounted /usr.
  538. Changed ld.so to be more robust in searching for libraries.
  539. A library is not considered found unless it can actually be
  540. loaded. If a library is not found using the cache, the
  541. standard directories are searched as in pre-cache versions.
  542. Changes in version 1.4.1:
  543. Fixed minor Makefile problems.
  544. Added support for linux-68k.
  545. Fixed a bug in ld.so where libraries with absolute paths
  546. were not handled correctly.
  547. Changed ld.so to ignore the directory in the names of
  548. shared libraries by default. This allows older libraries
  549. with absolute paths, such as the XView libraries, to take
  550. advantage of the cache support.
  551. Added a minimal usage message to ldconfig.
  552. Changes in version 1.4:
  553. Fixed bug in ld.so where minor version numbers were not
  554. reported correctly when a minor version incompatibility
  555. was found.
  556. Fixed bug in ldconfig where libraries with subversion
  557. numbers greater than 9 were not compared correctly.
  558. Added Mitch D'Souza's support for suppressing warning
  559. messages from ld.so about minor version incompatibilities.
  560. Added Mitch D'Souza's support for using a cache to speed
  561. up searching for libraries in the standard directories.
  562. Added Mitch D'Souza's support for a debugging version of
  563. ld.so. Link with -lldso if you think you are experiencing
  564. dynamic linker problems.
  565. Changes in version 1.3:
  566. Added support for libraries using absolute pathnames. If I
  567. had known that the XView libraries used them, I would have
  568. added this earlier.
  569. Fixed a bug handling old libraries using a pathname beginning
  570. with '/' or '/lib/'.
  571. Changes in version 1.2a:
  572. Fixed a minor bug in ldd which caused all files, specifically
  573. scripts, to be recognized as binaries. Thanks to Olaf Flebbe
  574. for reporting it.
  575. David Engel
  576. david@sw.ods.com