Project

General

Profile

Actions

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 (hereinafter Verilog tools) 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

Basic Installation (Recommended)

To install C++TESK, pass the following steps:

  1. Download the latest version of the C++TESK package (cpptesk-toolkit-src-<version-number>.tar.gz) from the Files page.
  2. Unzip the downloaded package:
    % tar xf cpptesk-toolkit-src-<version-number>.tar.gz
    
  3. Run the install.sh script as follows.
  • To install C++TESK without installing the Verilog tools, run:
    % ./install.sh
    
  • To install C++TESK together with the Verilog tools (∙) not reinstalling the Verilog tools if they have been already installed, run:
    % ./install.sh --install-veritool
    
  • To install C++TESK and (re)install the Verilog tools (∙), run:
    % ./install.sh --force-install-veritool
    
    (∙) It should be emphasized that when installing the Verilog tools they are downloaded from the Internet. If direct connection is not available, try to install the Verilog tools manually as it is described in the next section.

Home directories for the tools are chosen according to the following rules:

  1. If the environment variable ISPRAS_HOME is not set, ISPRAS_HOME=<user-home-directory>.
  2. If the environment variable CPPTESK_HOME is not set, CPPTESK_HOME=$ISPRAS_HOME/tools/cpptesk-toolkit.
  3. If the environment variable ICARUS_HOME is not set, ICARUS_HOME=$ISPRAS_HOME/tools/verilog.
  4. It the environment variable VERITOOL_HOME is not set, VERITOOL_HOME=$ISPRAS_HOME/tools/veritool.

C++TESK is installed into the directory $CPPTESK_HOME.

Icarus Verilog and VeriTool (if they are required) are installed into $ICARUS_HOME and $VERITOOL_HOME, respectively.

Manual Installation of the Verilog Tools

The Verilog tools can be installed manually (it might be useful if the target computer is not connected to the Internet, while there is another computer that can be used for downloading the packages).

To install Icarus Verilog, pass the following steps:

  1. Download the package from here.
  2. If the environment variable ICARUS_HOME is not set, assign an appropriate value:
    % export ICARUS_HOME=<path-to-icarus-verilog-installation-directory>
    % echo "export ICARUS_HOME=$ICARUS_HOME" >> "$HOME/.profile" 
    % echo "export ICARUS_HOME=$ICARUS_HOME" >> "$HOME/.bashrc" 
    
  3. Create the $ICARUS_HOME directory if it does not exist:
    % mkdir -p "$ICARUS_HOME" 
    
  4. Unzip the downloaded package and compile the sources:
    % tar xf verilog-<version-number>.tar.gz
    % cd verilog-<version-number>
    % ./configure --prefix="$ICARUS_HOME" 
    % make && make install
    

To install VeriTool, pass the following steps:

  1. Download the package from here.
  2. If the environment variable VERITOOL_HOME is not set, assign an appropriate value:
    % export VERITOOL_HOME=<path-to-veritool-installation-directory>
    % echo "export VERITOOL_HOME=$VERITOOL_HOME" >> "$HOME/.profile" 
    % echo "export VERITOOL_HOME=$VERITOOL_HOME" >> "$HOME/.bashrc" 
    
  3. Create the $VERITOOL_HOME directory if it does not exist:
    % mkdir -p "$VERITOOL_HOME" 
    
  4. Unzip the downloaded package and compile the sources:
    % tar xf veritool-<version-number>.tar.gz
    % cd veritool-<version-number>
    % ./configure --prefix="$VERITOOL_HOME" 
    % make all && make install
    

Eclipse plugin installation

To install C++TESK Eclipse plugin, do the following:

  1. Make sure you have Eclipse with C/C++ Development Environment and C++TESK installed.
  2. Start Eclipse.
  3. Open "Help"->"Install New Software..."
  4. Press "Add" and select "Archive" menu item and choose CPPTESK_Eclipse_plugin.zip in your file system (it's in CPPTESK_HOME/plugins directory).
  5. Follow installation instructions (press "Ok" on the unsigned content warning at the end of installation).

Also it is possible to install C++TESK Eclipse plugin by command line. If you prefer this way, do the following:

  1. Download and unpack C++TESK Testing Toolkit distribution archive.
  2. Run the command:
    bash ./install.sh --install-ide <path-to-Eclipse-instance-you-want-plugin-to-be-installed-in>
    

If you already have the elder version of the plugin, it will be removed, and the latest version will be installed.

Updated by Alexander Kamkin about 11 years ago · 74 revisions