2014-02-06 00:17:29 +00:00
|
|
|
Cross Compiling to Windows
|
|
|
|
==========================
|
|
|
|
|
2013-01-08 16:11:59 +00:00
|
|
|
Cross compiling mpv to Windows is supported with MinGW-w64. This can be used to
|
|
|
|
produce both 32 bit and 64 bit executables. MinGW-w64 is available from
|
|
|
|
http://mingw-w64.sourceforge.net.
|
|
|
|
|
|
|
|
You have to run mpv's configure with these arguments:
|
|
|
|
|
2014-02-15 18:12:58 +00:00
|
|
|
```bash
|
|
|
|
DEST_OS=win32 TARGET=i686-w64-mingw32 ./waf configure
|
|
|
|
```
|
2013-09-08 10:25:20 +00:00
|
|
|
|
2014-02-15 18:12:58 +00:00
|
|
|
While building a complete MinGW-w64 toolchain yourself is possible, people have
|
|
|
|
created scripts to help ease the process. These are the two recommended methods:
|
2013-01-08 16:11:59 +00:00
|
|
|
|
2014-03-09 14:02:28 +00:00
|
|
|
- Using [mingw-w64-cmake](https://github.com/lachs0r/mingw-w64-cmake) to setup
|
|
|
|
a MinGW-w64 environment. We recommend you to try this first before MXE.
|
|
|
|
mingw-w64-cmake will also build mpv and its dependencies.
|
2014-02-15 18:12:58 +00:00
|
|
|
- Alternatively, you can use MXE: http://mxe.cc. With MXE, you have to manually
|
|
|
|
set the target to MinGW-w64 (even if you compile to 32 bit). A working example
|
|
|
|
below.
|
|
|
|
|
|
|
|
**Warning**: the original MinGW (http://www.mingw.org) is unsupported.
|
2013-01-08 16:11:59 +00:00
|
|
|
|
2013-07-30 14:07:42 +00:00
|
|
|
Note that MinGW environments included in Linux distributions are often broken,
|
2013-01-08 16:11:59 +00:00
|
|
|
outdated and useless, and usually don't use MinGW-w64.
|
|
|
|
|
2014-09-14 14:21:04 +00:00
|
|
|
Additional dependencies
|
|
|
|
-----------------------
|
|
|
|
|
|
|
|
You need a pthread wrapper. It must be interoperable with native Windows
|
|
|
|
threads. pthreads-win32 or MinGW pthreads might work.
|
|
|
|
|
|
|
|
If you want ``--input-file=...`` to work, you need libwaio. It's available
|
|
|
|
from: git://midipix.org/waio
|
|
|
|
|
2013-01-08 16:11:59 +00:00
|
|
|
Example with MXE
|
2014-02-06 00:17:29 +00:00
|
|
|
----------------
|
2013-01-08 16:11:59 +00:00
|
|
|
|
2014-02-06 00:17:29 +00:00
|
|
|
```bash
|
2014-02-15 18:17:56 +00:00
|
|
|
# Download MXE. Note that compiling the required packages requires about 1.4 GB
|
2013-09-08 10:25:20 +00:00
|
|
|
# or more!
|
2013-01-08 16:11:59 +00:00
|
|
|
|
|
|
|
cd /opt
|
2013-12-19 20:29:21 +00:00
|
|
|
git clone https://github.com/mxe/mxe mingw
|
2013-01-08 16:11:59 +00:00
|
|
|
cd mingw
|
|
|
|
|
2014-02-16 02:15:56 +00:00
|
|
|
# Set build options.
|
2013-01-08 16:11:59 +00:00
|
|
|
|
2014-02-15 18:12:58 +00:00
|
|
|
# The JOBS environment variable controls threads to use when building. DO NOT
|
2014-02-16 02:15:56 +00:00
|
|
|
# use the regular `make -j4` option with MXE as it will slow down the build.
|
|
|
|
# Alternatively, you can set this in the make command by appending "JOBS=4"
|
|
|
|
# to the end of command:
|
|
|
|
echo "JOBS := 4" >> settings.mk
|
2013-01-08 16:11:59 +00:00
|
|
|
|
2014-02-15 18:12:58 +00:00
|
|
|
# The MXE_TARGET environment variable builds MinGW-w64 for 32 bit targets.
|
2014-02-16 02:15:56 +00:00
|
|
|
# Alternatively, you can specify this in the make command by appending
|
|
|
|
# "MXE_TARGETS=i686-w64-mingw32" to the end of command:
|
|
|
|
echo "MXE_TARGETS := i686-w64-mingw32" >> settings.mk
|
|
|
|
|
|
|
|
# If you want to build 64 bit version, use this:
|
|
|
|
# echo "MXE_TARGETS := x86_64-w64-mingw32" >> settings.mk
|
2013-01-08 16:11:59 +00:00
|
|
|
|
2014-02-16 02:15:56 +00:00
|
|
|
# Build required packages. The following provide a minimum required to build
|
|
|
|
# mpv.
|
|
|
|
|
|
|
|
make gcc ffmpeg libass jpeg pthreads
|
|
|
|
|
|
|
|
# Add MXE binaries to $PATH
|
|
|
|
export PATH=/opt/mingw/usr/bin/:$PATH
|
2013-01-08 16:11:59 +00:00
|
|
|
|
|
|
|
# Build mpv. The target will be used to automatically select the name of the
|
|
|
|
# build tools involved (e.g. it will use i686-w64-mingw32-gcc).
|
|
|
|
|
2014-02-15 18:12:58 +00:00
|
|
|
cd ..
|
2013-01-08 16:11:59 +00:00
|
|
|
git clone https://github.com/mpv-player/mpv.git
|
|
|
|
cd mpv
|
2013-07-16 11:28:28 +00:00
|
|
|
DEST_OS=win32 TARGET=i686-w64-mingw32 ./waf configure
|
2014-02-16 02:15:56 +00:00
|
|
|
# Or, if 64 bit version,
|
|
|
|
# DEST_OS=win32 TARGET=x86_64-w64-mingw32 ./waf configure
|
2013-07-16 11:28:28 +00:00
|
|
|
./waf build
|
2014-02-06 00:17:29 +00:00
|
|
|
```
|