Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changes between Version 10 and Version 11 of dev/LinuxGentoo


Ignore:
Timestamp:
Oct 27, 2006, 11:59:14 AM (17 years ago)
Author:
simon
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • dev/LinuxGentoo

    v10 v11  
    1616}}}
    1717
    18 From now on you should be able to play Orxonox, and if you have subversion installed and a login, you will also be able to develop->read on.
     18From now on you should be able to play Orxonox, and if you have subversion installed and a login, you will also be able to develop.
    1919
    2020=== Installing the Libraries ===
     
    2525 * SDL_net, media-libs/sdl-net, web http://www.libsdl.org/SDL_net
    2626 
    27 Here are the explicit commands to enter:
     27Here are the commands to enter:
    2828{{{
    2929wraith root # emerge media-libs/libsdl
     
    3636...
    3737}}}
    38 Gentoo is now ready to compile and run orxonox :) [[br]]
     38Gentoo is now ready to compile and then run Orxonox.[[br]]
    3939
    4040
    41 
    42 === Getting the Source ===
    43 First of all you will have to install subversion on your system: Make sure, that you have '''ssl''' included in your ''make.conf'' file:[[br]]
     41=== Getting the Source Code ===
     42First of all you have to install subversion on your system: Make sure, that you have '''ssl''' included in your ''make.conf'' file:[[br]]
    4443'''/etc/make.conf'''
    4544{{{
     
    4847 ...
    4948}}}
    50 now emerge the subversion program
     49now emerge subversion
    5150{{{
    5251wraith user # emerge subversion
    5352}}}
    54 Check out the source via svn anonymous, this will download the hole project to the directory orxonox-dir
     53Check out the source via anonymous subversion login. This will download the whole project to the directory orxonox-dir
    5554{{{
    5655wraith user # svn co http://svn.orxonox.net/orxonox orxonox-dir
    5756}}}
    58 You won't be able to commit (check in) anything with the anonymous repository. You have to ask us for user/pass combination. If you have already an account check it out like this:
     57You won't be able to commit your own code (check in) with the anonymous subversion repository. You have to ask us for a username/password combination. If you already have an account, check it out like this:
    5958{{{
    6059wraith user # svn co https://svn.orxonox.net/orxonox orxonox-dir
    6160}}}
    62 You will be asked for user name and password, that you have from us.
     61You will be asked for your username and password, that you got from us.
    6362
    6463
    6564=== Compiling ===
    66 Just change into the trunk directory, execute configure and make....
     65Just change into the trunk directory, then execute configure and make....
    6766{{{
    6867wraith user # cd ./orxonox/trunk/
     
    7675}}}
    7776
     77
    7878=== Profiling ===
    79 If you want to profile (performance measuring) Orxonox you will probably want to view the statistics in a special program like kprof. On Gentoo systems you can just emerge it:
     79If you want to profile Orxonox (measure its performance) you will probably want to view the statistics in a special program like kprof. On Gentoo systems you can just emerge it:
    8080{{{
    8181wraith root # emerge kprof
    8282}}}
    83 Orxonox runs much much slower with profiling enabled, so don't be embarassed!
     83Orxonox runs much much slower with profiling enabled.
    8484{{{
    8585wraith user # cd ./orxonox/trunk/
     
    9191wraith user # ./orxonox
    9292}}}
    93 Ok. Orxonox now runs very slow and writes its profiling stats to a file called gmon.out. Remember that _only_ those functionalities, that you are using while running the program will be profiled (since the profile log is written while the program is been executed). [[br]]
    94 After you exit the application, you will have to parse the output file and then you are able to open it in kprof application:
     93Orxonox now runs very slow and writes its profiling stats to a file called gmon.out. Remember that _only_ the functionalities you use while profiling will be profiled (since the profile log is written while the program is been executed). [[br]]
     94After you exit the Orxonox, you can parse the output file and then be able to open it in kprof:
    9595{{{
    9696wraith user # gprof -b ./orxonox > text.out
    9797wraith user # kprof -f text.out
    9898}}}
    99 For more documentation see the DevelopmentResources.
     99For more documentation see the [wiki:DevelopmentResources development resources].