Skip to content

Dependencies

Adharsh Kamath edited this page Nov 8, 2020 · 1 revision
  • Make sure you have Bison and Flex installed. To check if you have them, run bison --version and flex --version. If you don't have them, get them from here (for Windows), here and here (for Linux systems)

  • Make sure you have indent installed. To check if you have indent, run indent --version. Get it from here if you don't have it. indent is used in this project to nicely format the output programs. You can still generate OpenMP programs without it. It just won't look very neat :P

  • Make sure you have make installed. To check if you have it, run make --version. If you don't have it installed, get it from here (for Linux systems), or get chocolatey from here and run choco install make (for Windows)

  • Note: This project uses some features that are available only in C++17. Before compiling this project, upgrade your compiler if it doesn't support C++17.

Clone this wiki locally