Skip to content
This repository was archived by the owner on May 16, 2018. It is now read-only.

itesla/ipst-core

Folders and files

NameName
Last commit message
Last commit date

Latest commit

c220194 · Oct 3, 2017
Sep 25, 2017
Sep 20, 2017
Mar 8, 2017
Aug 30, 2017
Sep 4, 2017
Feb 13, 2017
Sep 4, 2017
Aug 28, 2017
Nov 29, 2016
Aug 30, 2017
Oct 3, 2017
Sep 2, 2017
Mar 16, 2017
Aug 22, 2017
Oct 3, 2017
Apr 27, 2017
Aug 26, 2017
Mar 16, 2017
Aug 10, 2017
Jul 28, 2017
Aug 31, 2017
Aug 28, 2017
Mar 8, 2017
Aug 28, 2017
Apr 8, 2016
Oct 3, 2017
Sep 28, 2017
Feb 20, 2017
Apr 7, 2016
Apr 7, 2016
Aug 29, 2017
Aug 29, 2017
Aug 29, 2017
Apr 7, 2016
Sep 20, 2017
Jun 25, 2017
Oct 3, 2017

Repository files navigation

Build Status Build status Coverage Status Dependency Status MPL-2.0 License

iPST core

http://www.itesla-project.eu/

http://www.itesla-pst.org

Environment requirements

In order to build iPST you need:

  • JDK (1.8 or greater)
  • Maven
  • CMake (2.6 or greater)
  • Recent C++ compiler (GNU g++ or Clang)
  • OpenMPI (1.8.3 or greater)
  • Some development packages (zlib, bzip2)

OpenMPI (required)

In order to support the MPI modules, you need to compile and install the OpenMPI library.

$> wget http://www.open-mpi.org/software/ompi/v1.8/downloads/openmpi-1.8.3.tar.bz2
$> tar xjf openmpi-1.8.3.tar.bz2
$> cd openmpi-1.8.3
$> ./configure --prefix=<INSTALL_DIR> --enable-mpi-thread-multiple
$> make install
$> export PATH=$PATH:<INSTALL_DIR>/bin

zlib (required)

In order to build Boost external package, you have to install zlib library.

$> yum install zlib-devel

bzip2 (required)

In order to build Boost external package, you have to install bzip library.

$> yum install bzip2-devel

Install

To easily compile iPST, you can use the toolchain:

$> git clone https://github.com/itesla/ipst-core.git
$> ./install.sh

By default, the toolchain will:

  • download and compile all external packages from the Internet
  • compile C++ and Java modules
  • install iPST

Targets

Target Description
clean Clean iPST modules
clean-thirdparty Clean the thirdparty libraries
compile Compile iPST modules
package Compile iPST modules and create a distributable package
install Compile iPST modules and install it
docs Generate the documentation (Doxygen/Javadoc)
help Display this help

Options

The toolchain options are saved in the install.cfg configuration file. This configuration file is loaded and updated each time you use the toolchain.

iPST

Option Description Default value
--help Display this help
--prefix Set the installation directory $HOME/itesla
--package-type Set the package format. The supported formats are zip, tar, tar.gz and tar.bz2 zip

Third-parties

Option Description Default value
--with-thirdparty Enable the compilation of thirdparty libraries
--without-thirdparty Disable the compilation of thirdparty libraries
--thirdparty-prefix Set the thirdparty installation directory $HOME/itesla_thirdparty
--thirdparty-download Sets false to compile thirdparty libraries from a local repository true
--thirdparty-packs Sets the thirdparty libraries local repository $HOME/itesla_packs

Default configuration file

ipst_prefix=$HOME/itesla
ipst_package_type=zip

#  -- iPST thirdparty libraries --
thirdparty_build=true
thirdparty_prefix=$HOME/itesla_thirdparty
thirdparty_download=true
thirdparty_packs=$HOME/itesla_packs

License

https://www.mozilla.org/en-US/MPL/2.0/