Last active
May 9, 2025 16:27
-
-
Save CynicRus/edd4e04c1fecb97a259e888baf380edd to your computer and use it in GitHub Desktop.
simple zlib install for Mingw64 for Windows
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 1) Download source code from https://github.com/madler/zlib/ | |
| 2) Unpack | |
| 3) Using powershell or cmd and navigate to the unpacked source folder | |
| 4) mkdir build | |
| 5) cd build | |
| 6) cmake -G "MinGW Makefiles" -DCMAKE_INSTALL_PREFIX=C:/mingw64 .. | |
| 7) mingw32-make | |
| 8) mingw32-make install | |
| same for liblzma |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment