Skip to content
Snippets Groups Projects
README.linux 3.68 KiB
Newer Older
Elemer Lelik's avatar
Elemer Lelik committed
******************************************************************************
* Copyright (c) 2000-2015 Ericsson Telecom AB
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
******************************************************************************

Build and install Titan on Linux

1.Install required libraries: 
(examples are given for Ubuntu 12.04/14.04; for other Linuxes, pls. use the relevant library installation method)

sudo apt-get install g++ expect libssl-dev libxml2-dev libncurses5-dev flex bison
xutils-dev is needed by makedepend:
sudo apt-get install xutils-dev
The following packages may be needed for titan_eclipse/automatic_build:
sudo apt-get install ant xsltproc

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

Elemer Lelik's avatar
Elemer Lelik committed
git clone https://github.com/eclipse/titan.core  titan.core
Elemer Lelik's avatar
Elemer Lelik committed

3. Configure the build 

Elemer Lelik's avatar
Elemer Lelik committed
cd titan.core
Lenard Nagy's avatar
Lenard Nagy committed
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


Lenard Nagy's avatar
Lenard Nagy committed
Several 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.

Elemer Lelik's avatar
Elemer Lelik committed
a) JNI  disabled
Elemer Lelik's avatar
Elemer Lelik committed

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

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




Elemer Lelik's avatar
Elemer Lelik committed
b) JNI  enabled
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
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 := yes
GEN_PDF := no



Elemer Lelik's avatar
Elemer Lelik committed
4. Run make
Elemer Lelik's avatar
Elemer Lelik committed

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}
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

Elemer Lelik's avatar
Elemer Lelik committed
or 
Elemer Lelik's avatar
Elemer Lelik committed

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}
export 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 bash
Elemer Lelik's avatar
Elemer Lelik committed

Elemer Lelik's avatar
Elemer Lelik committed
6. Run make install
Elemer Lelik's avatar
Elemer Lelik committed

Elemer Lelik's avatar
Elemer Lelik committed
make install
Elemer Lelik's avatar
Elemer Lelik committed

Elemer Lelik's avatar
Elemer Lelik committed
This will install Titan into  /home/<user id>/titan.core/Install
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.
Elemer Lelik's avatar
Elemer Lelik 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

nagylenard
Lenard Nagy's avatar
Lenard Nagy committed
elnrnag
Len N (nagylenard)'s avatar
Len N (nagylenard) committed
elnrnag2