Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changes between Initial Version and Version 1 of dev/LinuxTardis


Ignore:
Timestamp:
Apr 10, 2006, 3:20:12 PM (18 years ago)
Author:
bensch
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • dev/LinuxTardis

    v1 v1  
     1= Installation Guide to ORXONOX on Tardis =
     2
     3
     4There are generally two ways to install ORXONOX (from source) onto the System
     5The first one is the default approach, and requires you to have a copy (and all svn-files) on your account.
     6The Second approach requires you to check out orxonox every time you switch your workstation again.
     7
     8== The Home-Account approach ==
     9  1. Download  the source either from svn (https://svn.orxonox.net/orxonox/trunk) or (http://svn.orxonox.net/orxonox/trunk)
     10{{{
     11$ svn co https://svn.orxonox.net/orxonox/trunk orxonox/trunk
     12}}}
     13  2. Enter the newly checked out directory and configure it (this requires a special switch (--with-tardis), that automatically sets all environment flags for you at configure-time.
     14{{{
     15$ ./autogen.sh
     16$ ./configure --with-tardis
     17$ make
     18}}}
     19  3. now you are ready to work with the Source
     20
     21
     22== The Tardis-Local approach ==
     23  1. Download this script: https://svn.orxonox.net/orxonox/trunk/scripts/tardis-scratch-checkout.pl. Probably you will have to change the Permissions of the file, so you can execute it 
     24{{{
     25$ wget https://svn.orxonox.net/orxonox/trunk/scripts/tardis-scratch-checkout.pl
     26$ chmod 755 tardis-scratch-checkout.pl
     27}}}
     28  2. Then you will have to execute the script (to get the trunk):
     29{{{
     30$ ./tardis-scratch-checkout.pl
     31}}}
     32  This will automatically check out the trunk to /scratch/{username}/orxonox/trunk.
     33  If you'd like a branche you can use the script to do this too:
     34{{{
     35$ ./tardis-scratch-checkout.pl branches/myBranche
     36}}}     
     37  3. Now you can work with your trunk/branche
     38
     39== Pro/Contra ==
     40|| / || Home-Account || Tardis-Local ||
     41|| Checkout || once per account || once per tardis and account ||
     42|| Compiling || Network->slow || local->very much faster ||
     43|| Linking || stinking slow (30 seconds+)|| adequately fast ||