close
Warning:
BrowserModule failed with ConfigurationError: Look in the Trac log for more information.
- Timestamp:
-
Dec 15, 2006, 4:47:05 PM (18 years ago)
- Author:
-
Ingmar Baumgart
- Comment:
-
--
Legend:
- Unmodified
- Added
- Removed
- Modified
-
v5
|
v6
|
|
3 | 3 | These 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]). |
4 | 4 | |
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] |
6 | 6 | |
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++ |
| 8 | and OverSim to ~/sim/) and extract OMNeT++: |
| 9 | {{{ |
| 10 | mkdir ~/sim |
| 11 | cd ~/sim |
| 12 | tar xzf /tmp/omnetpp-3.3-src.tgz |
| 13 | }}} |
11 | 14 | |
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 | }}} |
13 | 20 | |
| 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 | |