| 1 | = Installation from the SVN repository = |
| 2 | |
| 3 | Check-out SystemCASS sources : |
| 4 | |
| 5 | {{{ |
| 6 | svn co https://www-asim.lip6.fr/svn/systemcass/sources |
| 7 | }}} |
| 8 | |
| 9 | Go into the SystemCASS sources directory |
| 10 | |
| 11 | {{{ |
| 12 | cd sources/src |
| 13 | }}} |
| 14 | |
| 15 | Specify the following definitions : |
| 16 | {{{ |
| 17 | export CXX=g++ |
| 18 | export SYSTEMC=[path to OSCI's SystemC directory] |
| 19 | export SYSTEMCASS=[path to SystemCASS binary directory] |
| 20 | export ALLIANCE=[path to ALLIANCE directory] # OPTIONAL : PAT format support |
| 21 | }}} |
| 22 | |
| 23 | Build the simulator and documentation |
| 24 | {{{ |
| 25 | make |
| 26 | make install |
| 27 | }}} |
| 28 | |
| 29 | Start regression test (useless for users, useful for developpers) |
| 30 | {{{ |
| 31 | cd ../test_regression |
| 32 | make test |
| 33 | }}} |
| 34 | |
| 35 | Now you have everything installed, you may begin using SystemCASS. |