xcode – install_name_tool -change和-id之间的区别
发布时间:2020-12-14 17:35:02 所属栏目:百科 来源:网络整理
导读:我一直在努力解决这个概念,我无法真正理解-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 i
我一直在努力解决这个概念,我无法真正理解-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:这会在链接后更改“安装名称”,并将在链接目标动态库的可执行文件或动态库上运行. (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |