3 | | * make - gnu make |
4 | | * For MS Windows |
5 | | * you can use minGW - minimalist GNU for Windows |
6 | | * also you will need a bash (like) shell for the configure and make files - msys, part of MinGW project |
7 | | *In order to install minGW: |
8 | | * create a directory named 'msys' |
9 | | * in it create a directory named 'mingw' |
10 | | * For example : C:/msys/mingw |
11 | | * download from the minGW project: |
12 | | * binutils - (version used in this document is 2.19.1) |
13 | | * gcc-core - (version used in this document is 4.2.1) |
14 | | * gcc-g++ - (version used in this document is 4.2.1) |
15 | | * mingwrt - (version used in this document is 3.15.2) |
16 | | * mingwrt-mingw32dll - (version used in this document is 3.15.2) |
17 | | * w32api-mingw32-dev - (version used in this document is 3.13) |
18 | | * extract all files to msys/mingw directory |
19 | | * this approach is used because the minGW installator downloads a w32api-mingw32 that is corrupt. You can use the installer before the manual install |
20 | | * there's an archive file that contains all these files |
21 | | * go to msys/mingw/bin directory and rename |
22 | | * c++-sjlj.exe to c++.exe |
23 | | * cpp-sjlj.exe to cpp.exe |
24 | | * g++-sjlj.exe to g++.exe |
25 | | * gcc-sjlj.exe to gcc.exe |
26 | | * download msys - (version used in this document is 1.0.11) |
27 | | * install msys to msys/ directory created before |
28 | | * For example: C:/msys |
29 | | * if everything is OK a console should be opened and you will be promted whether have a minGW installed and where it is |
| 3 | * [http://en.wikipedia.org/wiki/Make_(software) make] - [http://www.gnu.org/software/make/ gnu make] |
| 4 | |
| 5 | To build the natives on MS Windows |
| 6 | * for a compiler you can use [http://www.mingw.org/ MinGW] - minimalist GNU for Windows |
| 7 | * also you will need a bash (like) shell for the configure and make files - [http://www.mingw.org/ msys], minimal system (Bourne shell), part of [http://www.mingw.org/ MinGW] project |
| 8 | |
| 9 | There are two ways to install [http://www.mingw.org/ MinGW]. The first one is to use installer. This is the preffered way but right now the installer downloads a w32api-mingw32 that is a corrupt file. So this way doesn't work (at least at the moment of wrting of this document). The other one is manual installation. |
| 10 | |
| 11 | Steps for manual installation: |
| 12 | * create a directory named 'msys' |
| 13 | * in it create a directory named 'mingw' |
| 14 | * For example : C:/msys/mingw |
| 15 | * download from the minGW project, there is a convenient archive file that contains them all - [http://asteasolutions.net/~nenko]: |
| 16 | * binutils - (version used in this document is 2.19.1) |
| 17 | * gcc-core - (version used in this document is 4.2.1) |
| 18 | * gcc-g++ - (version used in this document is 4.2.1) |
| 19 | * mingwrt - (version used in this document is 3.15.2) |
| 20 | * mingwrt-mingw32dll - (version used in this document is 3.15.2) |
| 21 | * w32api-mingw32-dev - should be at least 3.13 version in order to build ffmpeg (version used in this document is 3.13) |
| 22 | * extract all files to msys/mingw directory |
| 23 | * go to msys/mingw/bin directory and rename |
| 24 | * c++-sjlj.exe to c++.exe |
| 25 | * cpp-sjlj.exe to cpp.exe |
| 26 | * g++-sjlj.exe to g++.exe |
| 27 | * gcc-sjlj.exe to gcc.exe |
| 28 | * download msys - (version used in this document is 1.0.11) |
| 29 | * install msys to msys/ directory created before - it is very important to install msys, after you install [http://www.mingw.org/ MinGW], otherwise you should make changes in the configuration of msys |
| 30 | * For example: C:/msys |
| 31 | * if everything is OK a console should be opened and you will be promted whether have a minGW installed and where it is |