Install
, а затем кнопку Continue
Continue
будет доступнаContinue
, а затем выберите пункты:Basic Setup
→ mingw-developer-toolkit-bin
Basic Setup
→ mingw32-base-bin
Basic Setup
→ mingw32-gcc-g++-bin
All Packages
→ mingw32-libz-dev
Installation
→ Apply Changes
Apply
, а затем на Close
MinGW Installation Manager
@echo off msys\1.0\msys.bat
C:\MinGW\msys\1.0\msys.bat
wget -q --show-progress https://www.openssl.org/source/old/1.0.2/openssl-1.0.2u.tar.gz tar -xvf openssl-1.0.2u.tar.gz && cd openssl-1.0.2u ./config && make
include\openssl
в C:\MinGW\include
libcrypto.a
и libssl.a
в C:\MinGW\lib
C:\MinGW\lib\libz.dll.a
-static
в начало LDFLAGS
внутри Makefile
C:\MinGW\libexec\mingw-get\guimain.exe
Installation
→ Mark All Upgrades
Installation
→ Apply Changes
Apply
, а затем на Close
MinGW Installation Manager
C:\MinGW\var\cache\mingw-get\packages
@echo off path=C:\MinGW\bin;C:\MinGW\msys\1.0\bin mingw32-make.exe pause
@echo off path=C:\MinGW\bin;C:\MinGW\msys\1.0\bin mingw32-make.exe clean pause
@echo off path=C:\MinGW\bin;C:\MinGW\msys\1.0\bin if "%1" neq "" ( echo "%~nx1" gcc.exe -static -O2 -s -o "%~dpn1.exe" "%1" strip.exe -s "%~dpn1.exe" ) pause
@echo off path=C:\Dev\SDK\mingw\bin;C:\Dev\SDK\mingw\msys\1.0\bin if not exist %~n0.exe ( gcc.exe -static -O2 -s -o %~n0.exe %~n0.c strip.exe -s %~n0.exe ) if exist %~n0.exe ( file %~n0.exe ldd %~n0.exe %~n0.exe ) pause
C:\MinGW