Lines Matching refs:rpath
4 Subject: [PATCH] Add option to make the rpath relative under a specified root
7 Running "patchelf" with the option "--make-rpath-relative ROOTDIR" will
30 ROOTDIR/usr/lib. Like "--shrink-rpath", RPATHDIRs are also discarded
33 If the option "--relative-to-file" is given, the rpath will start
129 @@ -1041,7 +1092,27 @@ static void concatToRPath(string & rpath, const string & path)
162 + if (op == rpMakeRelative && !rpath) {
167 if (op == rpShrink && !rpath) {
202 + vector<string> rpathDirs = splitColonDelimitedString(rpath);
263 if (!rpath) {
297 [--set-rpath RPATH]\n\
298 [--remove-rpath]\n\
299 [--shrink-rpath]\n\
300 + [--make-rpath-relative ROOTDIR]\n\
303 [--print-rpath]\n\
304 [--force-rpath]\n\
310 + else if (arg == "--make-rpath-relative") {
311 + if (++i == argc) error("missing argument to --make-rpath-relative");
321 else if (arg == "--print-rpath") {