0

我正在尝试在我的 Windows PC 上安装 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。)仍然没有更接近设置的地方。在得到这一点之前,我还需要先检查其他一些先决条件吗?

4

1 回答 1

0

您将无法使用 libimobiledevice 在 Windows PC 上运行 iOS 模拟器。这不是 libimobiledevice 所做的。libimobiledevice 提供用于与 iOS 设备交互的API 和工具,但不用于模拟它们。

如果你想让 libimobiledevice 在你的 Windows PC 上运行,你可能想看看libimobiledevice-win32,这是我维护的 libimobiledevice 到 Windows 的一个端口。

它允许您使用 Visual Studio 在 Windows 上编译 libplist、libusbmuxd、libimobiledevice 和朋友。

您可以在此处找到 libimobiledevice 的预编译二进制文件:https ://ci.appveyor.com/project/qmfrederik/imobiledevice-net/build/artifacts

于 2018-08-02T12:05:23.400 回答