FAUST Installation QuickStart: ------------------------------ Please make sure you have the following packages installed BEFORE compiling FAUST: (1) CMake Ver. 2.6.2 URL: http://www.cmake.org (2) BOOST C++ Libraries Ver. > 1.35.0 URL: http://www.boost.org (3) Latest SAGA C++ Libraries URL: http://saga.cct.lsu.edu Installation Instructions: -------------------------- (1) Download the latest Subversion release of HPX sourcecode from: https://svn.cct.lsu.edu/repos/saga-projects/applications/FAUST (2) Export the BOOST_ROOT environment to point to your BOOST installation directory (if not in system path): [bash]$ export BOOST_ROOT=> [csh] % setenv BOOST_ROOT (3) Export the SAGA_ROOT environment to point to your SAGA installation directory: [bash]$ export SAGA_ROOT=> [csh] % setenv SAGA_ROOT (4) In the FAUST root directory generate makefiles using "cmake": $ cmake -DSAGA_ROOT= -DCMAKE_PREFIX= . The DSAGA_ROOT flag is mandatory! Compilation won't work without it. The CMAKE_PREFIX is optional and default to /usr/local/faust. !! IMPORTANT: If you want to initiate cmake for another time time, make !! sure to delete the CMakeCache.txt file in the FAUST root directory before you do so. (5) Compile amd install the FAUST framework and agent using make: $ make $ make install The compilation messages should provide information on progress rate and the success of compilation & linking of FAUST code. If you have difficulty in compiling the code, please send me an email: oweidner cct lsu edu