微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

xcode – install_name_tool -change和-id之间的区别

我一直在努力解决这个概念,我无法真正理解-change和-id之间的区别.手册页说明

-id name
              Changes  the  shared  library identification name of a dynamic shared library to name.  If the Mach-O binary is not a dynamic
              shared library and the -id option is specified it is ignored.

-change old new
              Changes  the dependent shared library install name old to new in the specified Mach-O binary.  More than one of these options
              can be specified.  If the Mach-O binary does not contain the old install name in a specified -change  option  the  option  is
              ignored.

到目前为止,我已经尝试过-change.假设我有以下结构

Test.App
|_Contents
    |_MacOS
    |   |_test -----> item A
    |_Library
        |_test_library.dylib     --->item B
        |_another_library.dylib  --->item C

现在假设我在itemB上运行了以下命令

$otool -L test_library.dylib
   test_library.dylib
   /some/path/another_library.dylib  -->item D

上面的结果表明,如果我需要更改another_library.dylib的位置,test_library.dylib现在依赖于another_library.dylib我会这样做

install_name_tool -change /some/path/another_library.dylib some/new/path/another_library.dylib  test_library.dylib

这会改变项目D的位置.我的问题是install-name_tool -id做什么以及何时使用它?

解决方法

我的理解是:

-id:设置链接动态库时将使用的“安装名称”.它将在目标动态库文件上运行.

-change:这会在链接后更改“安装名称”,并将在链接目标动态库的可执行文件或动态库上运行.

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐