Project

General

Profile

Actions

Installation Guide » History » Revision 9

« Previous | Revision 9/74 (diff) | Next »
Alexander Kamkin, 09/26/2011 04:19 PM


Installation Guide

Introduction

This document describes the steps should be followed to install С++TESK Testing ToolKit (hereinafter C++TESK). In addition to C++TESK Icarus Verilog and 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.

Installation

To have C++TESK installed you should pass the following steps:

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.
2.Unzip the file (tar xf cpptesk-toolkit-src-*.tar.gz) and start executable script named install.sh, using the following parameters:
a.no parameters — install C++TESK only;
b.--install-veritool — install4 C++TESK (version 1.0), simulator Icarus Verilog, and VeriTool, if they haven’t been installed;
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).

The installation catalogues for all the tools will be chosen according to the following rules:

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.
2.If the environment variable CPPTESK_HOME is not defined, it will be assigned to the value $ISPRAS_HOME/tools/cpptesk-toolkit.
3.If the environment variable ICARUS_HOME is not defined, it will be assigned to the value $ISPRAS_HOME/tools/verilog.
4.It the environment variable VERITOOL_HOME is not defined, it will be assigned to the value $ISPRAS_HOME/tools/veritool.
5.C++TESK is installed into the folder $CPPTESK_HOME.
6.Icarus Verilog (if it is required) is installed into the folder $ICARUS_HOME.
7.VeriTool (if it is required) is installed into the folder $VERITOOL_HOME.

Manual installation of Icarus Verilog and VeriTool

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.

For manual installation of Icarus Verilog the following steps should be passed:

  1. If the system variable $ICARUS_HOME is not set, it should be assigned. E.g., the following command sequence can help:
    export ICARUS_HOME=<path_for_Icarus_Verilog_installation>
    echo "export ICARUS_HOME=$ICARUS_HOME" >> "$HOME/.profile" 
    echo "export ICARUS_HOME=$ICARUS_HOME" >> "$HOME/.bashrc" 
    
  2. It the folder $ICARUS_HOME does not exist, it should be created:
    mkdir -p "$ICARUS_HOME" 
    
  3. Having changed the directory to the one with installation package of Icarus Verilog, it is necessary to apply the following command sequence:
    tar xf verilog-0.9.4.tar.gz
    cd verilog-0.9.4
    ./configure --prefix="$ICARUS_HOME" 
    make && make install
    

For manual installation of VeriTool the following steps should be passed:

  1. If the system variable $VERITOOL_HOME is not set, it should be assigned. E.g., the following command sequence can help:
    export VERITOOL_HOME=<path_for_VeriTool_installation>
    echo "export VERITOOL_HOME=$VERITOOL_HOME">>"$HOME/.profile" 
    echo "export VERITOOL_HOME=$VERITOOL_HOME">>"$HOME/.bashrc" 
    
  2. It the folder $VERITOOL_HOME does not exist, it should be created:
    mkdir -p "$VERITOOL_HOME" 
    
  3. Having changed the directory to the one with installation package of VeriTool, it is necessary to apply the following command sequence:
    tar xf veritool-0.2.1-beta-20110702.tar.gz
    cd veritool-0.2.1-beta-20110702
    ./configure --prefix="$VERITOOL_HOME" 
    make all && make install
    

Updated by Alexander Kamkin over 12 years ago · 9 revisions