close Warning: BrowserModule failed with ConfigurationError: Look in the Trac log for more information.

Changes between Version 5 and Version 6 of OverSimInstall


Ignore:
Timestamp:
Dec 15, 2006, 4:47:05 PM (17 years ago)
Author:
Ingmar Baumgart
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • OverSimInstall

    v5 v6  
    33These instructions show you how to install OverSim for Linux. Compiling and running OverSim for Windows is currently not supported (If you want to compile OverSim for windows, you should take a look at the [http://www.omnetpp.org/pmwiki/index.php?n=Main.OmnetppInstallation OMNeT++ install instructions for Windows]).
    44
    5   1. Download and install OMNeT++ 3.3 from http://www.omnetpp.org/
     5  1. Download [http://www.omnetpp.org/filemgmt/visit.php?lid=122 OMNeT++ 3.3] from http://www.omnetpp.org/ after reading the [http://www.omnetpp.org/external/license.php License]
    66
    7     * Fetch and extract the tar from http://www.omnetpp.org/filemgmt/visit.php?lid=122
    8     * run ./configure and make
    9  
    10   2. Download and install the patched version of the INET framework from OverSimDownload
     7  2. Create a new directory (in the following we assume you want to install OMNeT++
     8and OverSim to ~/sim/) and extract OMNeT++:
     9{{{
     10   mkdir ~/sim
     11   cd ~/sim
     12   tar xzf /tmp/omnetpp-3.3-src.tgz
     13}}}
    1114
    12   3. Download and extract OverSim from OverSimDownload
     15  3. Add the following lines to your .bashrc or .profile
     16{{{
     17   export PATH=$PATH:~/sim/omnetpp-3.3/bin
     18   export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:~/sim/omnetpp-3.3/lib
     19}}}
    1320
     21  4. Edit ~/sim/omnetpp-3.3/configure.user and change CFLAGS for speed and profiling:
     22{{{
     23   CFLAGS='-O3 -DNDEBUG=1 -gstabs+3 -Wall'
     24}}}
     25
     26  5. Compile OMNeT++
     27{{{
     28   cd ~/sim/omnetpp-3.3
     29   ./configure
     30   make
     31}}}
     32
     33  6.   
     34
     35
     36