Skip to content
Snippets Groups Projects
README.linux 7.46 KiB
Newer Older
******************************************************************************
* Copyright (c) 2000-2021 Ericsson Telecom AB
Elemer Lelik's avatar
Elemer Lelik committed
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
Elemer Lelik's avatar
Elemer Lelik committed
* which accompanies this distribution, and is available at
* https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.html
Elemer Lelik's avatar
Elemer Lelik committed
*  Contributors:
*   Balasko, Jeno
*   Baranyi, Botond
*   Lelik, Elemer
*   Pilisi, Gergely
*   Szabados, Kristof
Elemer Lelik's avatar
Elemer Lelik committed
******************************************************************************

Build and install Titan on Linux

1.Install required libraries: 
(Examples are given for Ubuntu 12.04/14.04/16.04/18.04; for other Linuxes, pls. use the relevant library installation method)
UBUNTU :
sudo apt-get update -y
sudo apt-get install g++ expect libssl-dev libxml2-dev libncurses5-dev flex bison libedit2 libedit-dev

NOTE: If You run into an error "E: Unable to locate package libedit-dev
" then enabling Universe repository mey be needed:
sudo add-apt-repository universe

balaskoa's avatar
balaskoa committed
SLES 11.4: sudo zypper in libopenssl-devel libedit0 libedit-devel (g++ flex bison, expect, libncurses5 already installed)
SLED 14.0: sudo zypper in libopenssl-devel libedit0 libedit-devel ( g++, flex, bison libncurses5 already installed)
RHEL8: sudo yum libedit; g++, flex, bison already installed
Elemer Lelik's avatar
Elemer Lelik committed
xutils-dev is needed by makedepend:
sudo apt-get install xutils-dev
balaskoa's avatar
balaskoa committed
(SLED 14.0: - )

Install optional packages required some tests:

Elemer Lelik's avatar
Elemer Lelik committed
The following packages may be needed for titan_eclipse/automatic_build:
Ubuntu: sudo apt-get install ant xsltproc ant-junit
(SLED 12.4: sudo zypper install ant-junit ; libxslt-tools already installed)
(RHEL: sudo yum install ant ant-junit# xsltproc already installed)
(SUSE 15.1: -)

The regression test requires xmllint. The package containing it: libxml2-utils
ubuntu: sudo apt install libxml2-utils
balaskoa's avatar
balaskoa committed
suse: sudo zypper install libxml2-tools or libxml2
rhel: sudo yum install libxml2-devel


Performance test requires pcap
ubuntu: sudo apt-get install libpcap0.8-dev
suse: sudo zypper install libpcap-devel libpcap1
Elemer Lelik's avatar
Elemer Lelik committed

2.Clone or update the titan directory from git into /home/<user_id>/titan.core
Elemer Lelik's avatar
Elemer Lelik committed

cd /home/<user_id>/
git clone https://gitlab.eclipse.org/eclipse/titan/titan.core.git titan.core

or

Update the already existing local repository:
cd /home/<user_id>/titan.core
git pull https://gitlab.eclipse.org/eclipse/titan/titan.core.git
Elemer Lelik's avatar
Elemer Lelik committed

3. Configure the build 

Elemer Lelik's avatar
Elemer Lelik committed
cd titan.core
Elemer Lelik's avatar
Elemer Lelik committed

For open source users: check that MakefileFOSS.cfg is present and has the following content:
Elemer Lelik's avatar
Elemer Lelik committed
cat MakefileFOSS.cfg

# Configurations for the Free Open Source Software version
LICENSING := no
USAGE_STATS := no

Elemer Lelik's avatar
Elemer Lelik committed
If you want to use your build within the Ericsson domain: delete MakefileFOSS.cfg
This will enable Ericsson internal-only licensing and statistics.
Elemer Lelik's avatar
Elemer Lelik committed

balaskoa's avatar
balaskoa committed
#This paragraph is obsolete 
#GEN_PDF set to yes will convert Word documents to PDF using a web service available within Ericsson only.
#Alternatively, one can install libreoffice and convert the documentation files as below:
#cd titan.core/userguide
#libreoffice -convert-to pdf *.doc *.docx

GEN_PDF set to yes will convert .adoc documents to pdf using asciidoctor-pdf
Elemer Lelik's avatar
Elemer Lelik committed

Several other build options are possible; for details on options please read through the Makefile.cfg.
Elemer Lelik's avatar
Elemer Lelik committed
Options can be overridden by the content of  a file named Makefile.personal which can be used to 
adapt to local installation directories, change config options etc.
Below, a small number of typical scenarios are presented.

Note: For each scenario below on Raspberry Pi "-fsigned-char" needs to be added to compiler flags in Makefile.personal:

COMPILERFLAGS := -Wall -fsigned-char


Elemer Lelik's avatar
Elemer Lelik committed
a) JNI  disabled, gcc compiler (default)
Elemer Lelik's avatar
Elemer Lelik committed

The JNI interface is used by the Eclipse Titan Executor or by the Java Executor API.
Elemer Lelik's avatar
Elemer Lelik committed
If you don't need them, Titan can be compiled without JNI. 
Elemer Lelik's avatar
Elemer Lelik committed

Elemer Lelik's avatar
Elemer Lelik committed
Create ~/titan.core/Makefile.personal to override settings in Makefile.cfg with the following content:
Elemer Lelik's avatar
Elemer Lelik committed
(replace paths with values relevant to your installation)

Elemer Lelik's avatar
Elemer Lelik committed
TTCN3_DIR := /home/<user id>/titan.core/Install
Elemer Lelik's avatar
Elemer Lelik committed
OPENSSL_DIR := /usr
#JDKDIR := /usr/lib/jvm/java-7-openjdk-amd64
XMLDIR := /usr
JNI := no
GEN_PDF := no
OLD_LIBEDIT := yes # if the first line of /usr/include/editline/readline.h
balaskoa's avatar
balaskoa committed
                   # contains v1.34 or older i.e version of editline is 0:53:0 or older.
Elemer Lelik's avatar
Elemer Lelik committed

Elemer Lelik's avatar
Elemer Lelik committed
b) JNI  disabled, clang compiler ver. 3.8

Create ~/titan.core/Makefile.personal to override settings in Makefile.cfg with the following content:
(replace paths with values relevant to your installation). 
Elemer Lelik's avatar
Elemer Lelik committed

Elemer Lelik's avatar
Elemer Lelik committed
TTCN3_DIR := /home/<user id>/titan.core/Install
OPENSSL_DIR := /usr
#JDKDIR := /usr/lib/jvm/java-7-openjdk-amd64
XMLDIR := /usr
JNI := no
GEN_PDF := no
CXX := clang++-3.8
CC := clang-3.8 
Elemer Lelik's avatar
Elemer Lelik committed
OLD_LIBEDIT = yes  # if the first line of /usr/include/editline/readline.h
                   # contains v1.34 or older i.e version of editline is 0:53:0 or older.
Elemer Lelik's avatar
Elemer Lelik committed

Elemer Lelik's avatar
Elemer Lelik committed
c) JNI  enabled, gcc compiler (default)
Elemer Lelik's avatar
Elemer Lelik committed

install JDK   into /home/<user id>/jdk

Elemer Lelik's avatar
Elemer Lelik committed
Create ~/titan.core/Makefile.personal to override settings in Makefile.cfg with the following content:
Elemer Lelik's avatar
Elemer Lelik committed
(replace paths with values relevant to your installation).
Elemer Lelik's avatar
Elemer Lelik committed

Elemer Lelik's avatar
Elemer Lelik committed
TTCN3_DIR := /home/<user id>/titan.core/Install
Elemer Lelik's avatar
Elemer Lelik committed
OPENSSL_DIR := /usr
Elemer Lelik's avatar
Elemer Lelik committed
XMLDIR := /usr
JNI := yes
GEN_PDF := no
COMPILERFLAGS += -Wall -Wlogical-op -I/home/<user id>/jdk/include -I/usr/include
Elemer Lelik's avatar
Elemer Lelik committed
OLD_LIBEDIT = yes  # if the first line of /usr/include/editline/readline.h
                   # contains v1.34 or older i.e version of editline is 0:53:0 or older.
                   
Elemer Lelik's avatar
Elemer Lelik committed
d) For Alpine Linux, an appropriate flag has to be set:

:
ALPINE_LINUX := yes
:

Elemer Lelik's avatar
Elemer Lelik committed

Elemer Lelik's avatar
Elemer Lelik committed
4. Run make
Elemer Lelik's avatar
Elemer Lelik committed
5. Set environment variables
Elemer Lelik's avatar
Elemer Lelik committed

Elemer Lelik's avatar
Elemer Lelik committed
setenv TTCN3_DIR /home/<user id>/titan.core/Install
Elemer Lelik's avatar
Elemer Lelik committed
setenv PATH /home/<userid>/titan.core/Install/bin:${PATH}
Elemer Lelik's avatar
Elemer Lelik committed
setenv LD_LIBRARY_PATH /home/<userid>/titan.core/Install/lib:${LD_LIBRARY_PATH}
Elemer Lelik's avatar
Elemer Lelik committed

Elemer Lelik's avatar
Elemer Lelik committed
for csh
Elemer Lelik's avatar
Elemer Lelik committed
or 
Elemer Lelik's avatar
Elemer Lelik committed
export TTCN3_DIR=/home/<user id>/titan.core/Install
Elemer Lelik's avatar
Elemer Lelik committed
export PATH=/home/<userid>/titan.core/Install/bin:${PATH}
Elemer Lelik's avatar
Elemer Lelik committed
export LD_LIBRARY_PATH=/home/<userid>/titan.core/Install/lib:${LD_LIBRARY_PATH}
Elemer Lelik's avatar
Elemer Lelik committed
for bash
Elemer Lelik's avatar
Elemer Lelik committed
6. Run make install
Elemer Lelik's avatar
Elemer Lelik committed
make install
Elemer Lelik's avatar
Elemer Lelik committed
This will install Titan into  /home/<user id>/titan.core/Install
Elemer Lelik's avatar
Elemer Lelik committed
7. Optionally , run function/regression tests
Elemer Lelik's avatar
Elemer Lelik committed

Elemer Lelik's avatar
Elemer Lelik committed
cd /home/<user id>/titan.core/function_test
Elemer Lelik's avatar
Elemer Lelik committed

in the following Makefiles 

Elemer Lelik's avatar
Elemer Lelik committed
BER_EncDec/Makefile
Elemer Lelik's avatar
Elemer Lelik committed
XER_EncDec/Makefile
Text_EncDec/Makefile
RAW_EncDec/Makefile

edit the value of XMLDIR to match your installation values 

run the tests

make

( or make |& tee outputfile if you want to save the output for verification)

Elemer Lelik's avatar
Elemer Lelik committed
cd /home/<user id>/titan.core/regression_test
Elemer Lelik's avatar
Elemer Lelik committed
make run

( or make run |& tee outputfile if you want to save the output for verification)

These tests might run for half an hour (regr.tests)  to two hours (func.tests)

Lenard Nagy's avatar
Lenard Nagy committed
8. Optionally, copy Titan into its final directory.
Lenard Nagy's avatar
Lenard Nagy committed
From here on, you can continue with the Titan installation guide, see /Install/docs, to set/change environment variables etc.
Elemer Lelik's avatar
Elemer Lelik committed
and then, optionally, the Eclipse installation guide.
Elemer Lelik's avatar
Elemer Lelik committed

9. Important Note:  In later Debian and derived (Ubuntu etc.)  distributions Titan is avalable directly from repositories 
and can be installed with:

apt-get install eclipse-titan

However, environment variables and your Makefile will still have to be configured manually:

export TTCN3_DIR=/usr
export PATH=$TTCN3_DIR/bin:${PATH}
export LD_LIBRARY_PATH=$TTCN3_DIR/lib:${LD_LIBRARY_PATH}

Add to your Makefile the appropriate flags:

# Flags for the C++ preprocessor (and makedepend as well):
CPPFLAGS = ..... -I/usr/include/titan

and 

# Flags for the linker:
LDFLAGS = -L/usr/lib/titan