Update MinGW instructions
parent
dc1b270d78
commit
18f696bbfc
|
@ -81,40 +81,41 @@ Feel free to ask us in the IRC channel #yuzu-emu @ [Freenode](https://webchat.fr
|
||||||
### Prerequisites to install
|
### Prerequisites to install
|
||||||
|
|
||||||
* [MSYS2](https://www.msys2.org)
|
* [MSYS2](https://www.msys2.org)
|
||||||
|
* [Vulkan SDK](https://vulkan.lunarg.com/sdk/home#windows) - **Make sure to select Latest SDK.**
|
||||||
* Make sure to follow the instructions and update to the latest version by running `pacman -Syu` as many times as needed.
|
* Make sure to follow the instructions and update to the latest version by running `pacman -Syu` as many times as needed.
|
||||||
|
|
||||||
### Install yuzu dependencies for MinGW-w64
|
### Install yuzu dependencies for MinGW-w64
|
||||||
|
|
||||||
* Open the `MSYS2 MinGW 64-bit` (mingw64.exe) shell
|
* Open the `MSYS2 MinGW 64-bit` (mingw64.exe) shell
|
||||||
* Download and install all dependencies using: `pacman -S mingw-w64-x86_64-toolchain mingw-w64-x86_64-qt5 mingw-w64-x86_64-SDL2 mingw-w64-x86_64-cmake make git python2`
|
* Download and install all dependencies using: `pacman -Syu git make mingw-w64-x86_64-SDL2 mingw-w64-x86_64-cmake mingw-w64-x86_64-python-pip mingw-w64-x86_64-qt5 mingw-w64-x86_64-toolchain`
|
||||||
|
* Download and install Conan: `python -m pip install conan`
|
||||||
|
* Add MinGW binaries to the PATH: `echo 'PATH=/mingw64/bin:$PATH' >> ~/.bashrc'`
|
||||||
|
* Add glslangValidator to the PATH: `echo 'PATH=$(readlink -e /c/VulkanSDK/*/Bin/):$PATH' >> ~/.bashrc`
|
||||||
|
|
||||||
### Clone the yuzu repository with Git
|
### Clone the yuzu repository with Git
|
||||||
|
|
||||||
**Master:**
|
|
||||||
```bash
|
```bash
|
||||||
git clone --recursive https://github.com/yuzu-emu/yuzu.git
|
git clone --recursive https://github.com/yuzu-emu/yuzu.git
|
||||||
cd yuzu
|
cd yuzu
|
||||||
```
|
```
|
||||||
|
|
||||||
**Mainline (no assert):**
|
|
||||||
```bash
|
|
||||||
git clone --recursive https://github.com/yuzu-emu/yuzu-mainline.git
|
|
||||||
cd yuzu-mainline
|
|
||||||
```
|
|
||||||
|
|
||||||
### Run the following commands to build yuzu (dynamically linked build)
|
### Run the following commands to build yuzu (dynamically linked build)
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
mkdir build && cd build
|
mkdir build && cd build
|
||||||
cmake -G "MSYS Makefiles" -DCMAKE_MAKE_PROGRAM=mingw32-make -DCMAKE_BUILD_TYPE=Release ..
|
cmake -G "MSYS Makefiles" ..
|
||||||
mingw32-make -j4
|
make -j$(nproc)
|
||||||
# test yuzu out with
|
# test yuzu out with
|
||||||
./bin/yuzu.exe
|
./bin/yuzu.exe
|
||||||
```
|
```
|
||||||
|
|
||||||
* *(Note: This build is not a static build meaning that you need to include all of the DLLs with the .exe in order to use it!)*
|
* *(Note: This build is not a static build meaning that you need to include all of the DLLs with the .exe in order to use it!)*
|
||||||
|
|
||||||
|
e.g.
|
||||||
|
```Bash
|
||||||
|
cp externals/ffmpeg-*/bin/*.dll bin/
|
||||||
|
```
|
||||||
|
|
||||||
### Building without Qt (Optional)
|
### Building without Qt (Optional)
|
||||||
|
|
||||||
Doesn't require the rather large Qt dependency, but you will lack a GUI frontend:
|
Doesn't require the rather large Qt dependency, but you will lack a GUI frontend:
|
||||||
|
|
Loading…
Reference in New Issue