aboutsummaryrefslogtreecommitdiffhomepage
path: root/DOCS/compile-windows.md
Commit message (Collapse)AuthorAge
* DOCS/compile-windows.md: update for changes to mpv and MSYS2Gravatar James Ross-Gowan2017-10-02
| | | | | | | | | | | | - Don't recommend libdvdnav, since DVD support isn't compiled by default anymore. - Take advantage of the new $MINGW_PACKAGE_PREFIX and $MSYSTEM_PREFIX variables to make the build commands independent from the mingw-w64 build environment being used. - Invoke /usr/bin/python3 directly, since I've heard some packages have started to depend on mingw-w64 versions of Python, but our build scripts only work with the MSYS2 version. - Reword the MSYS2 install instructions to try to prevent common errors.
* wscript_build: install shared libmpv to BINDIR for Win32Gravatar Ricardo Constantino2017-04-24
|
* DOCS/compile-windows: be more specific about the D3D compiler DLLGravatar Martin Herkt2016-11-23
| | | | Also provide a more useful link to _43 and _47.
* wscript: move install dirs setting to after C compiler checkGravatar Ricardo Constantino2016-11-16
| | | | | | | | This fixes waf setting the wrong LIBDIR for DEST_OS=win32 in waflib/Tools/c_config.py:get_cc_version() Any scripts assuming the implib and pkgconfig are in the wrong place should be changed to move the .dll instead.
* DOCS/compile-windows.md: update msys2 instructions againGravatar Kevin Mitchell2016-09-25
| | | | they keep changing things. . .
* DOCS/compile-windows.md: MSVC DLL usage instructionsGravatar wm42016-07-14
|
* DOCS/compile-windows.md: use CC=gcc.exe for msys2 compileGravatar Kevin Mitchell2016-03-18
| | | | | The .exe extension *is* required. It only kind of worked without it due to the --check-c-compiler flag.
* DOCS/compile-windows.md: update dependencies for msys2 buildGravatar Kevin Mitchell2016-03-18
| | | | | Apparently, you're not supposed to use msys2 pkg-config for mingw stuff. Also, in msys2, python *is* python3.
* DOCS/compile-windows.md: update MSYS2 instructionsGravatar Kevin Mitchell2016-03-16
| | | | | | | | * Use the update-core command * Add --check-c-compiler=gcc to be safe * Add warning about potential pitfalls of adding C:\msys2\mingw64\bin to %PATH% * Recommend winpty * Add note about ANGLE
* DOCS/compile-windows: pthreads is not needed anymoreGravatar wm42015-12-20
| | | | | | Both mpv and ffmpeg have their own internal pthreads wrappers. The mpv one has been recently enabled by default as well. (It didn't work on XP, but we dropped XP support.)
* win32: input: use Vista CancelIoExGravatar James Ross-Gowan2015-12-20
| | | | | | | | | | | | | | | | | libwaio was added due to the complete inability to cancel synchronous I/O cleanly using the public Windows API in Windows XP. Even calling TerminateThread on the thread performing I/O was a bad solution, because the TerminateThread function in XP would leak the thread's stack. In Vista and up, however, this is no longer a problem. CancelIoEx can cancel synchronous I/O running on other threads, allowing the thread to exit cleanly, so replace libwaio usage with native Vista API functions. It should be noted that this change also removes the hack added in 8a27025 for preventing a deadlock that only seemed to happen in Windows XP. KB2009703 says that Vista and up are not affected by this, due to a change in the implementation of GetFileType, so the hack should not be needed anymore.
* DOCS/compile-windows.md: fix Lua packageGravatar wm42015-06-18
| | | | | mingw-w64-x86_64-lua maps to Lua 5.3, which we do not support. Change it to mingw-w64-x86_64-lua51.
* DOCS/compile-windows.md: drop unused dependencyGravatar wm42015-06-16
|
* DOCS: fix compilation instructions for MXE crosscompilationGravatar gunmantheh2015-03-17
| | | | | | Add bootstrap step for Linux->Windows MXE crosscompilation. Signed-off-by: wm4 <wm4@nowhere>
* DOCS/compile-window.md: add Lua package to MXE instructionsGravatar wm42015-03-06
| | | | The MSYS2 ones already mention Lua.
* DOCS/compile-windows.md: fix pkg-config directoryGravatar James Ross-Gowan2015-01-09
|
* DOCS: add instructions for building with MSYS2Gravatar James Ross-Gowan2015-01-08
mpv can be built natively on a Windows machine using MSYS2. Add detailed instructions on how to build and merge them with the existing instructions for cross-compilation.