Version 1 (modified by nenko, 16 years ago) (diff) |
---|
In order to build the natives you need :
- C++ compiler - gcc for example
- make - gnu make
- For MS Windows
- you can use minGW - minimalist GNU for Windows
- also you will need a bash (like) shell for the configure and make files - msys, part of MinGW project
*In order to install minGW:
- create a directory named 'msys'
- in it create a directory named 'mingw'
- For example : C:/msys/mingw
- download from the minGW project:
- binutils - (version used in this document is 2.19.1)
- gcc-core - (version used in this document is 4.2.1)
- gcc-g++ - (version used in this document is 4.2.1)
- mingwrt - (version used in this document is 3.15.2)
- mingwrt-mingw32dll - (version used in this document is 3.15.2)
- w32api-mingw32-dev - (version used in this document is 3.13)
- extract all files to msys/mingw directory
- this approach is used because the minGW installator downloads a w32api-mingw32 that is corrupt. You can use the installer before the manual install
- there's an archive file that contains all these files
- go to msys/mingw/bin directory and rename
- c++-sjlj.exe to c++.exe
- cpp-sjlj.exe to cpp.exe
- g++-sjlj.exe to g++.exe
- gcc-sjlj.exe to gcc.exe
- download msys - (version used in this document is 1.0.11)
- install msys to msys/ directory created before
- For example: C:/msys
- if everything is OK a console should be opened and you will be promted whether have a minGW installed and where it is
- start msys
- 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
- checout the natives from the svn
- the folder structure in sophie2-natives is the following:
- lib-src - containing the source code for the libraries we depend on
- lib-target - contains the built libraries
- src - contains the natives code
- junk - contains junk. The building happens in this folder
- so to build the ffmpeg library:
- start msys - usually there's an icon on the Desktop
- you will see bash like console. You can access your local drives with the following command:
*cd c:/msys/
- cd c:
- go to lib-src
- For example: cd c:/sophie2-natives
- execute make ffmpeg or make all (make all will build all libraries)
- For example: make ffmpeg
- you will see bash like console. You can access your local drives with the following command:
*cd c:/msys/