You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using [MSYS2](https://www.msys2.org/) is the official way of compiling this project on Windows.
9
+
Download the MSYS2 installer and follow the installation steps.
10
+
11
+
The provided build script will build the entire libimobiledevice stack with the least
12
+
amount of external dependencies for Windows.
13
+
14
+
# Prerequesites
15
+
16
+
It is recommended to use the MSYS2 MinGW 64-bit shell. Run it and make sure the required dependencies are installed:
17
+
18
+
```shell-session
19
+
pacman -S base-devel \
20
+
git \
21
+
mingw-w64-x86_64-gcc \
22
+
make \
23
+
libtool \
24
+
autoconf \
25
+
automake-wrapper
26
+
```
27
+
28
+
Note that usbmuxd is currently not fully supported on Windows. To use this library you need to have Apple Mobile Device Support package installed (part of iTunes).
29
+
30
+
# Installation
31
+
32
+
In the MSYS2 MinGW shell, type the following commands:
0 commit comments