Skip to content
  • Use the following commands to install dependencies on macOS:

    brew install git cmake gcc flex boost grep

    echo 'export PATH="/usr/local/opt/flex/bin:$PATH"' >> ~/.zshrc

    Edited by Raymond Langer
  • UBUNTU 20.04

    
    sudo apt-get install bison cmake cmake-curses-gui flex g++ gfortran git python intel-mkl gnuplot libsundials-dev ssh xclip zsh -yq
    
    #
    # SAME AS ABOVE
    #
    cd some/thing/FlameMasterVaillant
    # if the repository was _not_ available anymore clone it again
    # The command will also checkout the vaillant branch
    git clone git@git.rwth-aachen.de:ITV/FlameMaster.git Repository --branch vaillant
    # update the repository
    cd Repository
    git pull
    cd ..
    mkdir -p Build && cd Build
    
    #
    # SLIGHTLY DIFFERENT
    #
    cmake ../Repository -DCMAKE_BUILD_TYPE=Release -DINSTALL_EIGEN=ON -DEIGEN_INTEGRATION=ON -DCOMBUSTION_LIBS=ON -DBLA_VENDOR=Intel10_64lp_seq
    # -j<n> specifies the number of threads used for the compilation
    make install -j8
    Edited by Raymond Langer
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment