summaryrefslogtreecommitdiffstats
path: root/README
diff options
context:
space:
mode:
authorJonas Kuemmerlin <rgcjonas@gmail.com>2013-04-28 14:42:01 (GMT)
committerJonas Kuemmerlin <rgcjonas@gmail.com>2013-04-28 14:42:01 (GMT)
commitae5c6775e4d6e12ddc1c94e93fd4177f8f830f08 (patch)
tree231e414f5a6b9e0692fcdc067d9a0b131f8292d2 /README
parent7c8c47bf7aa8e468d61f82b44dbf369c0874cdea (diff)
downloadpatchelf-ae5c6775e4d6e12ddc1c94e93fd4177f8f830f08.zip
patchelf-ae5c6775e4d6e12ddc1c94e93fd4177f8f830f08.tar.gz
patchelf-ae5c6775e4d6e12ddc1c94e93fd4177f8f830f08.tar.bz2
Add ability to add and replace DT_NEEDED entries
Diffstat (limited to 'README')
-rw-r--r--README10
1 files changed, 10 insertions, 0 deletions
diff --git a/README b/README
index fbdbcf5..c56ca34 100644
--- a/README
+++ b/README
@@ -26,6 +26,16 @@ libraries. In particular, it can do the following:
This option can be given multiple times.
+* Add a declared dependency on a dynamic library (DT_NEEDED):
+ $ patchelf --add-needed libfoo.so.1 my-program
+
+ This option can be give multiple times.
+
+* Replace a declared dependency on a dynamic library with another one (DT_NEEDED):
+ $ patchelf --replace-needed liboriginal.so.1 libreplacement.so.1 my-program
+
+ This option can be give multiple times.
+
AUTHOR