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

相关文章

在有效期内的苹果开发者账号(类型为个人或者公司账号)。还...
Appuploader官网--IOS ipa上传发布工具,证书制作工具跨平台...
苹果在9月13号凌晨(北京时间)发布 iOS 16,该系统的设备可...
计算机图形学--OpenGL递归实现光线追踪
Xcode 14打出来的包在低版本系统运行时会崩溃,报错信息是Li...