Changes between Initial Version and Version 1 of InstallationNotesDev


Ignore:
Timestamp:
Dec 6, 2007, 11:53:36 AM (16 years ago)
Author:
wahid
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • InstallationNotesDev

    v1 v1  
     1= Installation notes =
     2
     3== Step 1 ==
     4Check-out a copy of the SoCView simulator
     5
     6{{{
     7svn co https://www-asim.lip6.fr/svn/socview/SoCView
     8}}}
     9
     10This directory contains 2 folders :
     11 * ''simdb-2.1'' is the simulator core
     12 * ''GUI'' is the Graphical User Interface
     13
     14== Step 2 ==
     15Build the simulator core
     16
     17{{{
     18cd simdb-2.1
     19./install.sh
     20}}}
     21
     22In case of problem, you may look inside the install.sh script file to see what it does, it is pretty simple!
     23
     24Known problem : depending on your platform, ''aclocal'' and ''automake'' may not work properly, you should probably specify which version you use
     25
     26  ''aclocal-1.6'' and ''automake-1.6'' are supposed to work fine with Linux (2.6 kernel)
     27
     28  ''aclocal-1.10'' and ''automake-1.10'' are supposed to work fine with MacOSX (10.5)
     29
     30
     31== Step 3 ==
     32Build the Graphical User Interface (GUI)
     33
     34  You must have QT-4.3 installed on your systemc
     35
     36  ''qmake'' references qmake-4.3 which should be in /usr/bin or /usr/lib/qt4/bin or somewhere else ...
     37 * Case 1 : on Linux
     38{{{
     39cd GUI
     40qmake -project -o socview.pro
     41qmake
     42make
     43}}}
     44 * Case 2 : on MacOSX (with xCode 3.0)
     45{{{
     46cd GUI
     47qmake -project -o socview.pro
     48qmake
     49
     50then browse with your finder to the folder GUI, double click on socview.xcodeproj to launch Xcode builder and build the socview.app
     51}}}
     52
     53
     54Now you have everything installed, you may begin using SoCView