Changes between Initial Version and Version 1 of InstallationNotes


Ignore:
Timestamp:
Jun 28, 2007, 3:55:27 PM (17 years ago)
Author:
wahid
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • InstallationNotes

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