close
Warning:
BrowserModule failed with ConfigurationError: Look in the Trac log for more information.
- Timestamp:
-
Mar 22, 2009, 9:43:46 PM (16 years ago)
- Author:
-
Ingmar Baumgart
- Comment:
-
--
Legend:
- Unmodified
- Added
- Removed
- Modified
-
v37
|
v38
|
|
4 | 4 | |
5 | 5 | 1. Requirements for OMNeT++ and !OverSim: |
6 | | * [http://tcl.sourceforge.net/ Tcl/Tk 8.4 + optionally BLT] |
7 | | * [http://gmplib.org/ libgmp] |
8 | | |
9 | | If you have a debian-based distribution like Ubuntu you can install these packages with: |
| 6 | * For Linux: |
| 7 | * [http://tcl.sourceforge.net/ Tcl/Tk 8.4 with BLT] and [http://gmplib.org/ libgmp] |
| 8 | * On Ubuntu you can install these packages with: |
10 | 9 | {{{ |
11 | 10 | sudo apt-get install tk8.4-dev libgmp3-dev blt-dev |
12 | 11 | }}} |
| 12 | * For Mac OS X 10.5 |
| 13 | * [http://developer.apple.com/TOOLS/xcode/ Xcode 3.x] and [http://www.finkproject.org/ Fink (includes libgmp)] |
| 14 | * After installation of Fink open a terminal and install libgmp with: |
| 15 | {{{ |
| 16 | sudo apt-get install libgmp3-dev |
| 17 | }}} |
| 18 | * For Windows: Everything you need is already included in the OMNeT++ 4.0 package. |
13 | 19 | |
14 | | 2. Download [http://www.omnetpp.org/filemgmt/visit.php?lid=164 OMNeT++ 4.0] from http://www.omnetpp.org/ after reading the [http://www.omnetpp.org/external/license.php License] |
| 20 | 2. Download OMNeT++ 4.0 ([http://www.omnetpp.org/filemgmt/visit.php?lid=164 Linux/Mac] or [http://www.omnetpp.org/filemgmt/visit.php?lid=163 Windows] version) from http://www.omnetpp.org/ after reading the [http://www.omnetpp.org/external/license.php License] |
15 | 21 | |
16 | | 3. Create a new directory (in the following we assume you want to install OMNeT++ and !OverSim to ~/sim/) and extract OMNeT++: |
| 22 | 3a. (Linux/Mac only): Create a new directory (in the following we assume you want to install OMNeT++ and !OverSim to ~/sim/) and extract OMNeT++: |
17 | 23 | {{{ |
18 | 24 | mkdir ~/sim |
… |
… |
|
21 | 27 | }}} |
22 | 28 | |
23 | | 4. Add the following lines to your .bashrc or .profile: |
| 29 | 3b. (Windows only): Extract OMNeT++ archive in a new directory (e.g. C:\sim\omnetpp-4.0) and double click on {{{mingwenv.cmd}}} |
| 30 | |
| 31 | 4. (Linux/Mac only): Add the following lines to your .bashrc or .profile: |
24 | 32 | {{{ |
25 | 33 | export PATH=~/sim/omnetpp-4.0/bin:$PATH |
26 | 34 | }}} |
27 | 35 | |
28 | | |
29 | | 5. Compile OMNeT++. |
| 36 | 5. Compile OMNeT++ (no need to change the directoy on Windows): |
30 | 37 | {{{ |
31 | 38 | cd ~/sim/omnetpp-4.0 |
… |
… |
|
58 | 65 | }}} |
59 | 66 | |
60 | | Congratulations - now you should have a working !OverSim installation! For instructions how to use !OverSim look at OverSimUsage. |
| 67 | Congratulations - now you should have a working !OverSim installation! For instructions how to use !OverSim look at OverSimUsage. |
61 | 68 | |
62 | | If you want to install obsolete OverSim releases visit the OldOverSimInstall page. |
| 69 | You can also use the included Eclipse IDE to compile OverSim: |
| 70 | * Start Eclipse with ''omnetpp'' |
| 71 | * Create a new workspace by choosing a new workspace directory on Eclipse startup |
| 72 | * ''File''->''Import''->''General''->''Existing Projects into Workspace''->''Next''->select the ''INET-!OverSim-20090317'' directory->''Finish'' |
| 73 | * Repeat the same steps for the !OverSim project |
| 74 | * The build process should start automatically - if not, hit ''Ctrl->B'' |
| 75 | |
| 76 | If you want to install obsolete !OverSim releases visit the OldOverSimInstall page. |