wiki:BaseInstall

Version 5 (modified by Christoph Mayer, 15 years ago) ( diff )

--

Installation

Quick Install

Ariba currently build on Linux systems. Our reference platform is Ubuntu 8.04 with the gcc compiler version 4.2.4. Download the latest Ariba package from the the download site:

> wget https://projekte.tm.uni-karlsruhe.de/download/ariba/releases/ariba-x.x.x.tar.gz

Extract the archive and change into the project directory:

> tar xfz ./ariba-x.x.x.tar.gz
> cd ariba-x.x.x.tar.gz

Now, configure, compile, and install Ariba:

> ./configure
> make
> make install

In case you don't want to install Ariba into your system but to a local place, do:

> mkdir ariba
> ./configure --prefix=/home/user/ariba/
> make
> make install

Prequisites

Ariba depends on some libraries that may not be installed on your system: Boost, Log4cxx, GMP, and optionally Doxygen. Furthermore, you need default development tools that are most likely already installed on your system (gcc, autoconf, automake, aclocal, libtool, ...).

If you have root privileges on your system you can easily install the needed libraries using apt-get:

> apt-get install 

TODO: ariba

./configure --prefix=/home/mayer/SpoVNet/development-ka/spovnet/trunk/build --with-boost=/home/mayer/SpoVNet/development-ka/spovnet/trunk/lib/boost_1_35_0/build CPPFLAGS='-I/home/mayer/SpoVNet/development-ka/spovnet/trunk/lib/gmp_4_2_2/build/include -I/home/mayer/SpoVNet/development-ka/spovnet/trunk/lib/log4cxx_0_10_0/build/include' LDFLAGS='-L/home/mayer/SpoVNet/development-ka/spovnet/trunk/lib/gmp_4_2_2/build/lib -L/home/mayer/SpoVNet/development-ka/spovnet/trunk/lib/log4cxx_0_10_0/build/lib -L/home/mayer/SpoVNet/development-ka/spovnet/trunk/lib/boost_1_35_0/build/lib'

TODO mcpo

Note: See TracWiki for help on using the wiki.