Skip to main content

Posts

Showing posts from April, 2012

How to install OpenMP in Ubuntu (Linux)

At first, I must to say that this is my first entry that I write in English, so excuse me if I make some mistake. Said that, I will continue describing the process that you must to do if you want to install OpenMP in your machine.  First, open a terminal window and put this command: sudo apt-get install gcc-multilib When the installation progress finished, you will have the API OpenMP installed in your machine. I saw other processes, but this is the simplest way to do that. Finally, when you are going to compile your program, don't forget that you must to include the next flag: -fopenmp . With this flag, you are including the OpenMP libraries!!! Thats all!! I wait have helped you.