Building OpenMPI with intel compiler » History » Version 1
Alexis Jeandet, 06/11/2013 08:19 PM
1 | 1 | Alexis Jeandet | h1. BuildingOMPI |
---|---|---|---|
2 | |||
3 | To build openMPI with intel compiler: |
||
4 | |||
5 | <pre><code class="bash"> |
||
6 | export CC=icc |
||
7 | export CXX=icpc |
||
8 | export F77=ifort |
||
9 | export F90=ifort |
||
10 | export FC=ifort |
||
11 | export LIBS="-lirc" |
||
12 | ./configure |
||
13 | make -j 64 # or the number of cores you have |
||
14 | </code></pre> |