diff options
author | Ozan Türkyılmaz <ozan.turkyilmaz@gmail.com> | 2010-10-18 22:34:15 -0500 |
---|---|---|
committer | Erik Hanson <erik@slackbuilds.org> | 2010-10-20 10:50:23 -0500 |
commit | c6fd0d7eea61f9b26d0020a47b628b17f3f0fcfd (patch) | |
tree | 420a47e519ff6236f0c9e22011be21ab6af14353 /system/prelink/README | |
parent | b760f054f3006aa6393ab8e7497c0c0767f56f5a (diff) | |
download | slackbuilds-c6fd0d7eea61f9b26d0020a47b628b17f3f0fcfd.tar.gz |
system/prelink: Added (ELF prelinking utility)
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'system/prelink/README')
-rw-r--r-- | system/prelink/README | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/system/prelink/README b/system/prelink/README new file mode 100644 index 0000000000..f55bdb00ab --- /dev/null +++ b/system/prelink/README @@ -0,0 +1,13 @@ +Prelink is a program that modifies ELF shared libraries and ELF dynamically +linked binaries in such a way that the time needed for the dynamic linker to +perform relocations at startup significantly decreases. Due to fewer +relocations, the run-time memory consumption decreases as well (especially +the number of unshareable pages). The prelinking information is only used +at startup time if none of the dependent libraries have changed since +prelinking; otherwise, programs are relocated normally. + +There is a script in the prelink documentation directory that is suitable +for a cron job. Before setting up a cron job, first run prelink on the +system and then read the script and modify it as needed. + +This requires libelf. |