Changes between Initial Version and Version 1 of SVNrepository


Ignore:
Timestamp:
Jul 20, 2007, 6:03:45 PM (17 years ago)
Author:
buchmann
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • SVNrepository

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