| | 1 | = Installation notes = |
| | 2 | |
| | 3 | Check-out a copy of the SoCView simulator |
| | 4 | |
| | 5 | {{{ |
| | 6 | svn co https://www-asim.lip6.fr/svn/socview/socview-2.1 |
| | 7 | }}} |
| | 8 | |
| | 9 | Go into the directory |
| | 10 | {{{ |
| | 11 | cd socview-2.1 |
| | 12 | }}} |
| | 13 | |
| | 14 | Create the configuration script |
| | 15 | {{{ |
| | 16 | aclocal-1.6 |
| | 17 | automake-1.6 --add-missing --copy --foreign |
| | 18 | autoconf |
| | 19 | }}} |
| | 20 | |
| | 21 | Specify the g++ for the compilation |
| | 22 | {{{ |
| | 23 | export CXX=g++ |
| | 24 | }}} |
| | 25 | |
| | 26 | Create a temporary compilation directory |
| | 27 | {{{ |
| | 28 | mkdir objdir |
| | 29 | cd objdir |
| | 30 | ../configure |
| | 31 | }}} |
| | 32 | |
| | 33 | Build the simulator |
| | 34 | {{{ |
| | 35 | gmake |
| | 36 | gmake install |
| | 37 | cd .. |
| | 38 | }}} |
| | 39 | |
| | 40 | Build the Graphical User Interface (GUI) |
| | 41 | {{{ |
| | 42 | cd gui |
| | 43 | qmake |
| | 44 | make |
| | 45 | }}} |
| | 46 | |
| | 47 | Now you have everything installed, you may begin using SoCView |