在 Mac Catalina 中安装旧版本的 ilibmobiledevice ( libimobiledevice.6.dylib )
Installing old version of ilibmobiledevice ( libimobiledevice.6.dylib ) in Mac Catalina
我需要在我的 mac machine 中安装特定版本的 libimobiledevice。即 libimobiledevice.6.dylib.
https://github.com/libimobiledevice
在 libimobiledevice git 中,我无法弄清楚我需要为 libimobiledevice 使用哪个版本。6.dylib。
这方面的任何帮助都会有所帮助。
提前致谢。
你说的版本后缀.6是libimobiledevice共享库的“SO版本”。它在 line 18 of configure.ac
.
中定义
您可以通过 running Git Blame on configure.ac
查看上次更改 SO 版本的时间。
版本后缀最后一次更改是在六年前。所以过去 6 年的任何版本的 libimobiledevice 都可以。
您最好使用最新发布的版本(1.3.0,参见 https://libimobiledevice.org/#downloads)或仅使用 Git 的最新版本。 libimobiledevice 非常 backwards-compatible,我想不出有任何理由使用 libimobiledevice 的旧版本。
如果您在构建 libimobiledevice 后得到的文件名与您要查找的文件名不匹配,您可以重命名 .dylib。
我需要在我的 mac machine 中安装特定版本的 libimobiledevice。即 libimobiledevice.6.dylib.
https://github.com/libimobiledevice
在 libimobiledevice git 中,我无法弄清楚我需要为 libimobiledevice 使用哪个版本。6.dylib。
这方面的任何帮助都会有所帮助。
提前致谢。
你说的版本后缀.6是libimobiledevice共享库的“SO版本”。它在 line 18 of configure.ac
.
您可以通过 running Git Blame on configure.ac
查看上次更改 SO 版本的时间。
版本后缀最后一次更改是在六年前。所以过去 6 年的任何版本的 libimobiledevice 都可以。
您最好使用最新发布的版本(1.3.0,参见 https://libimobiledevice.org/#downloads)或仅使用 Git 的最新版本。 libimobiledevice 非常 backwards-compatible,我想不出有任何理由使用 libimobiledevice 的旧版本。
如果您在构建 libimobiledevice 后得到的文件名与您要查找的文件名不匹配,您可以重命名 .dylib。