| 1 | In order to build the natives you need : |
| 2 | * C++ compiler - gcc for example |
| 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 |
| 30 | * start msys |
| 31 | * unpack coreutils. The unpacked folder contains many UNIX commands and you can copy the one you need. For building ffmpeg you need pr. So copy pr.exe to msys/bin directory |
| 32 | * checout the natives from the svn |
| 33 | * svn co svn://sophie2.org/sophie2/branches/private/nenko/natives2/sophie2-natives |
| 34 | * the folder structure in sophie2-natives is the following: |
| 35 | * lib-src - containing the source code for the libraries we depend on |
| 36 | * lib-target - contains the built libraries |
| 37 | * src - contains the natives code |
| 38 | * junk - contains junk. The building happens in this folder |
| 39 | * so to build the ffmpeg library: |
| 40 | * start msys - usually there's an icon on the Desktop |
| 41 | * you will see bash like console. You can access your local drives with the following command: |
| 42 | *cd c:/msys/ |
| 43 | * cd c: |
| 44 | * go to lib-src |
| 45 | * For example: cd c:/sophie2-natives |
| 46 | * execute make ffmpeg or make all (make all will build all libraries) |
| 47 | * For example: make ffmpeg |
| 48 | |
| 49 | http://www.mingw.org/ |
| 50 | |
| 51 | http://ffmpeg.arrozcru.org/wiki/index.php?title=MSys_MinGW |