Project

General

Profile

Installation Guide » History » Version 9

Alexander Kamkin, 09/26/2011 04:19 PM

1 1 Alexander Kamkin
h1. Installation Guide
2
3
h2. Introduction
4
5 5 Alexander Kamkin
This document describes the steps should be followed to install "С++TESK Testing ToolKit":http://forge.ispras.ru/projects/cpptesk-toolkit (hereinafter C++TESK). In addition to C++TESK "Icarus Verilog":http://iverilog.icarus.com and "VeriTool":http://forge.ispras.ru/projects/veritool are recommended to be installed (they are used for generating C/C++ API for Verilog modules). Before installing the toolkit make sure that [[System Requirements]] are met.
6 1 Alexander Kamkin
7
h2. Installation
8
9
To have C++TESK installed you should pass the following steps:
10
11
1.Download the latest version of C++TESK from page http://forge.ispras.ru/projects/cpptesk-toolkit/files. It’ll be an archive named cpptesk-toolkit-src-*.tar.gz.
12
2.Unzip the file (tar xf cpptesk-toolkit-src-*.tar.gz) and start executable script named install.sh, using the following parameters:
13 2 Alexander Kamkin
a.no parameters — install C++TESK only;
14
b.--install-veritool — install4 C++TESK (version 1.0), simulator Icarus Verilog, and VeriTool, if they haven’t been installed;
15
c.--force-install-veritool — installs С++TESK, simulator Icarus Verilog, and VeriTool (Icarus Verilog and VeriTool will be installed even if they have been installed already).
16 1 Alexander Kamkin
17
The installation catalogues for all the tools will be chosen according to the following rules:
18
19
1.If the environment variable ISPRAS_HOME is not defined, it will be assigned to the address of the installing C++TESK user’s the home folder.
20
2.If the environment variable CPPTESK_HOME is not defined, it will be assigned to the value $ISPRAS_HOME/tools/cpptesk-toolkit.
21
3.If the environment variable ICARUS_HOME is not defined, it will be assigned to the value $ISPRAS_HOME/tools/verilog.
22
4.It the environment variable VERITOOL_HOME is not defined, it will be assigned to the value $ISPRAS_HOME/tools/veritool.
23
5.C++TESK is installed into the folder $CPPTESK_HOME.
24
6.Icarus Verilog (if it is required) is installed into the folder $ICARUS_HOME.
25
7.VeriTool (if it is required) is installed into the folder $VERITOOL_HOME.
26 6 Alexander Kamkin
27
h3. Manual installation of Icarus Verilog and VeriTool
28
29 1 Alexander Kamkin
If the computer is not connected to the Internet, manual installation of Icarus Verilog and VeriTool is required. Installation packages can be downloaded using the following addresses: http://sourceforge.net/projects/iverilog/files/iverilog/0.9.4/verilog-0.9.4.tar.gz and http://forge.ispras.ru/projects/veritool/files.
30 2 Alexander Kamkin
31 7 Alexander Kamkin
For manual installation of Icarus Verilog the following steps should be passed:
32 1 Alexander Kamkin
33 7 Alexander Kamkin
# If the system variable $ICARUS_HOME is not set, it should be assigned. E.g., the following command sequence can help:
34
<pre>
35 1 Alexander Kamkin
export ICARUS_HOME=<path_for_Icarus_Verilog_installation>
36
echo "export ICARUS_HOME=$ICARUS_HOME" >> "$HOME/.profile"
37
echo "export ICARUS_HOME=$ICARUS_HOME" >> "$HOME/.bashrc"
38 7 Alexander Kamkin
</pre>
39
# It the folder $ICARUS_HOME does not exist, it should be created:
40
<pre>
41 1 Alexander Kamkin
mkdir -p "$ICARUS_HOME"
42 7 Alexander Kamkin
</pre>
43
# Having changed the directory to the one with installation package of Icarus Verilog, it is necessary to apply the following command sequence:
44
<pre>
45 1 Alexander Kamkin
tar xf verilog-0.9.4.tar.gz
46
cd verilog-0.9.4
47
./configure --prefix="$ICARUS_HOME"
48
make && make install
49 7 Alexander Kamkin
</pre>
50 1 Alexander Kamkin
51 7 Alexander Kamkin
For manual installation of VeriTool the following steps should be passed:
52 1 Alexander Kamkin
53 9 Alexander Kamkin
# If the system variable $VERITOOL_HOME is not set, it should be assigned. E.g., the following command sequence can help:
54
<pre>
55 1 Alexander Kamkin
export VERITOOL_HOME=<path_for_VeriTool_installation>
56
echo "export VERITOOL_HOME=$VERITOOL_HOME">>"$HOME/.profile"
57
echo "export VERITOOL_HOME=$VERITOOL_HOME">>"$HOME/.bashrc"
58 9 Alexander Kamkin
</pre>
59
# It the folder $VERITOOL_HOME does not exist, it should be created:
60
<pre>
61 1 Alexander Kamkin
mkdir -p "$VERITOOL_HOME"
62 9 Alexander Kamkin
</pre>
63
# Having changed the directory to the one with installation package of VeriTool, it is necessary to apply the following command sequence:
64
<pre>
65 1 Alexander Kamkin
tar xf veritool-0.2.1-beta-20110702.tar.gz
66
cd veritool-0.2.1-beta-20110702
67
./configure --prefix="$VERITOOL_HOME"
68
make all && make install
69 9 Alexander Kamkin
</pre>