Changes between Version 22 and Version 23 of dev/WindowsMinGW
- Timestamp:
- Mar 3, 2009, 10:01:32 PM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
dev/WindowsMinGW
v22 v23 14 14 1. Specify the path of the MinGW directory (most probably this will be {{{c:/mingw}}}). 15 15 16 Switch to the home-directory of your MSYS installation: {{{ C:\<msys-install-path>\home\<username>\}}}[[br]]16 Switch to the home-directory of your MSYS installation: {{{c:\<msys-install-path>\home\<username>\}}}[[br]] 17 17 This is your homedirectory in MSYS, this is where the action takes place. 18 19 '''In the following, we'll call this directory {{{c:\<msys-homedir>\}}} to make things shorter.''' 18 20 19 21 … … 21 23 To use [wiki:SVN] on your system we recommend TortoiseSVN, a very useful GUI-version. [http://tortoisesvn.net/downloads Download] 22 24 23 TortoiseSVN is a shell extension. You can use it within Windows Explorer . Most options are available through the context menu (right mouse button).25 TortoiseSVN is a shell extension. You can use it within Windows Explorer, which is very practical. Most options are available through the context menu (right mouse button). 24 26 25 27 26 28 == Get the source == 27 Check out the Orxonox-repository from {{{https://svn.orxonox.net/orxonox/trunk/}}} into a folder named 'trunk', for example {{{c:\<msys-homedir>\trunk\}}} 29 Check out the Orxonox-repository from {{{https://svn.orxonox.net/orxonox/trunk/}}} into a folder named 'trunk', for example {{{c:\<msys-homedir>\trunk\}}}. '''It's very important to use a directory inside your MSYS homedirectory, otherwise you can't compile.''' 28 30 * URL: {{{https://svn.orxonox.net/orxonox/trunk/}}} 29 31 * Checkout directory: {{{c:\<msys-homedir>\trunk\}}} … … 62 64 * While installing check the option to add CMake to the system PATH 63 65 64 Open the MSYS console, change into your trunk folder and create a binary output directory:66 Open the MSYS console, change into your trunk folder and create an output directory for the binaries: 65 67 {{{ 66 68 $ cd trunk … … 75 77 76 78 == Building Orxonox == 77 Type into the MSYS console:79 Type the following into the MSYS console: 78 80 {{{ 79 81 #!html … … 83 85 </pre> 84 86 }}} 85 If you have a multicore CPU, use "make -j3" instead of just "make".87 The first command will check your system (and the dependency directory) for all needed libraries, create the configuration and generate the makefiles. The second command builds Orxonox. If you have a multicore CPU, use "make -j3" instead of just "make". If you get an error while executing one of those steps, report it in the [http://forum.orxonox.net/ Forum] or ask us in [irc://irc.orxonox.net/orxonox IRC]. 86 88 87 Compiling will take some time (CMake shows you the percentage). [[br]]89 Compiling will take some time (CMake shows you the percentage). Be patient.[[br]] 88 90 89 91 If everything worked fine, start Orxonox with {{{c:\<msys-homedir>\trunk\build\run.bat}}}