Installing Windows deps with MSYS2 (#2959)

This commit is contained in:
YRTV
2019-12-03 12:21:09 +03:00
committed by Rémi Verschelde
parent 48306dc559
commit a4bf34e6e1

View File

@@ -25,6 +25,17 @@ For compiling under Windows, the following is required:
scoop install gcc python scons make
.. note:: If you have `MSYS2 <https://www.msys2.org/>`_ installed, you can easily
install MinGW and other dependencies using the following command::
pacman -S mingw-w64-x86_64-python3-pip \
mingw-w64-x86_64-gcc mingw-w64-x86_64-yasm \
mingw-w64-i686-python3-pip mingw-w64-i686-gcc \
mingw-w64-i686-yasm make
For each MSYS2 MinGW subsystem, you should then run
``pip install scons`` in its shell.
.. seealso:: For a general overview of SCons usage for Godot, see
:ref:`doc_introduction_to_the_buildsystem`.