333
edits
Ccawley2011 (talk | contribs) |
Rootfather (talk | contribs) |
||
Line 13: | Line 13: | ||
You can find [https://www.msys2.org/ MSYS2 on the official webpage] and detailed installation instructions on the [https://github.com/msys2/msys2/wiki/MSYS2-installation MSYS2 github wiki]. | You can find [https://www.msys2.org/ MSYS2 on the official webpage] and detailed installation instructions on the [https://github.com/msys2/msys2/wiki/MSYS2-installation MSYS2 github wiki]. | ||
The MinGW packages are named mingw-<env>-<package>, where <env> is either x86_64 or i686, depending on your architecture (64-bit and 32-bit, respectively). | The MinGW packages are named <code>mingw-<env>-<package></code>, where <code><env></code> is either x86_64 or i686, depending on your architecture (64-bit and 32-bit, respectively). | ||
To create an i686 or x86_64 build environment, we need to first update the already installed packages and the MSYS2 environment itself. | To create an i686 or x86_64 build environment, we need to first update the already installed packages and the MSYS2 environment itself. | ||
Line 28: | Line 28: | ||
</syntaxhighlight> | </syntaxhighlight> | ||
These commands will fetch and install the packages needed for compiling, including (but not limited to) GCC | These commands will fetch and install the packages needed for compiling, including (but not limited to) GCC 12.x, GDB, and libwinpthread-git. | ||
Additionally, if you would like to include Discord Rich Presence support, the pre-compiled libraries are [https://github.com/discord/discord-rpc/releases here]. Simply copy the files into your base MinGW directory. | Additionally, if you would like to include Discord Rich Presence support, the pre-compiled libraries are [https://github.com/discord/discord-rpc/releases here]. Simply copy the files into your base MinGW directory. |
edits