-
Notifications
You must be signed in to change notification settings - Fork 2
Dependencies
-
Make sure you have Bison and Flex installed. To check if you have them, run
bison --version
andflex --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 runchoco 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.