- Please download the dependency tarball, untar it and run a plain make in the base directory. - Compile the animath-framework as follows: $./configure --with-ext= If you want to use SIMD optimized tensor mathematics, use the --enable-asm-arithmetic configure switch $make all - If you would like to have the documentation, install doxygen and run $make doc in the animath source root directory - Example: $mkdir test_animath $cp animath-2.0.tar.gz animath_dependencies.tar.bz2 test_animath $cd test_animath $export SRCROOT="${PWD}" $tar zxf animath-2.0.tar.gz $tar jxf animath_dependencies.tar.bz2 $cd animath_dependencies $make $cd animath-2.0 If g++-4.3 is installed on your system, please install g++ 4.2 and configure the package as follows: $CXX=g++-4.2 ./configure --with-ext="${SRCROOT}/animath_dependencies" else $./configure --with-ext="${SRCROOT}/animath_dependencies" $make all doc $cd ../ $tar jxf heat.tar.bz2 $cd heat $make CXX=g++-4.2 EXTROOT="${SRCROOT}/animath_dependencies" ANIMATHROOT="${SRCROOT}/animath-2.0"