在macOS上打印可执行文件的rpath

时间:2012-09-20 22:26:08

标签: macos command-line terminal dynamic-linking darwin

我想使用install_name_tool更改可执行文件的 rpath ,但我现在无法弄清楚 rpath 是什么。 install_name_tool要求在命令行上提供旧的和 rpath 。我可以使用什么命令在macOS下打印可执行文件的 rpath

5 个答案:

答案 0 :(得分:84)

首先,要了解可执行文件不包含单个rpath条目,而是包含一个或多个条目的数组。

其次,您可以使用otool列出图片的rpath条目。使用otool -l,您将获得如下输出,最后是rpath条目:

Load command 34
          cmd LC_LOAD_DYLIB
      cmdsize 88
         name /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit (offset 24)
   time stamp 2 Wed Dec 31 19:00:02 1969
      current version 1038.32.0
compatibility version 45.0.0

Load command 35
          cmd LC_RPATH
      cmdsize 40
         path @loader_path/../Frameworks (offset 12)

查找LC_RPATH命令并记下path条目下的路径。

答案 1 :(得分:3)

我发现我可以使用

在macOS上打印共享库的安装名称
otool -D mylib

此外,我可以通过将-id标记传递给install_name_tool来直接设置安装名称而不引用旧的安装名称:

install_name_tool -id @rpath/my/path mylib

答案 2 :(得分:2)

我目前正在编写几个用于处理DYLD的Bash-3脚本,这个脚本回答了这个问题,所以我将其发布以供参考:

#! /bin/bash

# ######################################################################### #

if [ ${#} -eq 0 ]
then
    echo "
Usage: ${0##*/} FILE...

List rpaths in FILEs
"    
    exit 0
fi

# ######################################################################### #

shopt -s extglob

# ######################################################################### #

for file in "${@}"
do
    if [ ! -r "${file}" ]
    then
        echo "${file}: no such file" 1>&2
        continue
    fi

    if ! [[ "$(/usr/bin/file "${file}")" =~ ^${file}:\ *Mach-O\ .*$ ]]
    then
        echo "${file}: is not an object file" 1>&2
        continue
    fi

    if [ ${#} -gt 1 ]
     then
         echo "${file}:"
    fi

    IFS_save="${IFS}"
    IFS=$'\n'

    _next_path_is_rpath=

    while read line
    do
        case "${line}" in
            *(\ )cmd\ LC_RPATH)
                _next_path_is_rpath=yes
                ;;
            *(\ )path\ *\ \(offset\ +([0-9])\))
                if [ -z "${_next_path_is_rpath}" ]
                then
                    continue
                fi
                line="${line#* path }"
                line="${line% (offset *}"
                if [ ${#} -gt 1 ]
                then
                    line=$'\t'"${line}"
                fi
                echo "${line}"
                _next_path_is_rpath=
                ;;
        esac
    done < <(/usr/bin/otool -l "${file}")

    IFS="${IFS_save}"
done

# ######################################################################### #

'希望它有所帮助; - )

注意:有没有人知道一些对这个脚本有用的Bash-3技巧?

答案 3 :(得分:2)

您可以使用otool -l myexecutable,但是如果您只对 rpath s列表感兴趣,则会打印出许多不必要的信息。

您可以通过以下方式将otool -l的输出过滤到相关的 rpath 条目:

otool -l myexecutable | grep RPATH -A2

答案 4 :(得分:-1)

我只是使用otool命令

sleep

打印出rpath字段。不需要任何长脚本。