summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--DOCS/crosscompile-mingw.md (renamed from DOCS/crosscompile-mingw.txt)7
1 files changed, 6 insertions, 1 deletions
diff --git a/DOCS/crosscompile-mingw.txt b/DOCS/crosscompile-mingw.md
index 0e8f59c65e..42b89036d7 100644
--- a/DOCS/crosscompile-mingw.txt
+++ b/DOCS/crosscompile-mingw.md
@@ -1,3 +1,6 @@
+Cross Compiling to Windows
+==========================
+
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.
@@ -16,8 +19,9 @@ Note that MinGW environments included in Linux distributions are often broken,
outdated and useless, and usually don't use MinGW-w64.
Example with MXE
-================
+----------------
+```bash
# Download MXE. Note that compiling the required packages requires about 1 GB
# or more!
@@ -46,3 +50,4 @@ cd mpv
export PATH=/opt/mingw/usr/bin/:$PATH
DEST_OS=win32 TARGET=i686-w64-mingw32 ./waf configure
./waf build
+```