Skip to content
Snippets Groups Projects

cse3_sol.c

  • Clone with SSH
  • Clone with HTTPS
  • Embed
  • Share
    The snippet can be accessed without any authentication.
    Authored by Laurenz Friedrich Grote

    Ported MuLö of CSE Ex to Linux 5

    Edited
    cse3.c 1.93 KiB
    • Raymond Langer @raymond.langer ·

      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
    • Raymond Langer @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% Loading or .
    You are about to add 0 people to the discussion. Proceed with caution.
    Please register or to comment