Skip to content

Install

Stéphane Letz edited this page Jan 22, 2020 · 1 revision

Installing FAUST

Installing on Linux

The default install directory is /usr/local:

> sudo make install

Custom installation

To install in another folder:

> make install PREFIX=/your_folder/folder

Faust libraries location

By default, all faust libraries are installed in a lib folder. Some system may require to have the 64 bits libraries installed in a lib64 folder. To specify another destination folder for libraries, use the LIBSDIR option e.g.:

> make LIBSDIR=lib64

or when your project is already generated:

> make cmake LIBSDIR=lib64

WARNING: all the compilation chain must be aware of the libraries destination folder. Indeed, faust --libdir must give the correct location.