我正试图在我的windows上安装libimobiledevice (来自https://www.libimobiledevice.org/ ),以便在进行项目时能够运行iPhone模拟器和命令,但我很难找到安装和配置libimobiledevice所需的其他设备。到目前为止,我已经按照指示尝试了命令:
./autogen.sh 和
./autogen.sh make sudo make install以下是我所犯的错误:
./autogen.sh: line 13: libtoolize: command not found
./autogen.sh: line 15: aclocal: command not found
./autogen.sh: line 16: autoheader: command not found
./autogen.sh: line 17: automake: command not found
./autogen.sh: line 18: autoconf: command not found
./autogen.sh: line 23: ./configure: No such file or directory在研究我安装的MinGW (基本安装包)时,我克隆了libplist、ideviceinstaller、libideviceactivation、libusbmuxd (我找不到libzip)。还是找不到更近的地方来安排这一切。在得到这一点之前,我还需要先检查一下其他的先决条件吗?
发布于 2018-08-02 12:05:23
您将无法使用libimobiledevice在Windows上运行iOS模拟器。这不是libimobiledevice做的。libimobiledevice提供用于与iOS设备交互的API和工具,但不用于模拟它们。
如果你想让libimobiledevice在你的Windows上运行,你可能想看看libimobiledevice-win32 32,它是我维护的libimobiledevice的一个端口。
它允许您使用Visual在Windows上编译libplist、libusbmuxd、libimobiledevice和朋友。
您可以在这里找到libimobiledevice的预编译二进制文件:https://ci.appveyor.com/project/qmfrederik/imobiledevice-net/build/artifacts
https://stackoverflow.com/questions/51648565
复制相似问题