File tree 1 file changed +23
-0
lines changed 1 file changed +23
-0
lines changed Original file line number Diff line number Diff line change @@ -1744,3 +1744,26 @@ href=\"$topdir/community/help/\">Getting Help</a> page -- it details
1744
1744
how to send a request to the Open MPI mailing lists. " ;
1745
1745
1746
1746
/////////////////////////////////////////////////////////////////////////
1747
+
1748
+ $ q [] = "How do I statically link to the libraries of Intel compiler suite? " ;
1749
+
1750
+ $ anchor [] = "statically-link-with-intel-libraries " ;
1751
+
1752
+ $ a [] = "The Intel compiler suite, by default, dynamically links its runtime libraries
1753
+ against the Open MPI binaries and libraries. This can cause problems if the Intel
1754
+ compiler libraries are installed in non-standard locations. For example, you might
1755
+ get errors like:
1756
+
1757
+ <blockquote>
1758
+ error while loading shared libraries: libimf.so: cannot open shared object file:
1759
+ No such file or directory
1760
+ </blockquote>
1761
+
1762
+ To avoid such problems, you can pass flags to Open MPI's configure script that instruct
1763
+ the Intel compiler suite to statically link its runtime libraries with Open MPI:
1764
+
1765
+ <geshi bash>
1766
+ shell$ ./configure CC=icc CXX=icpc FC=ifort LDFLAGS=-Wc,-static-intel ...
1767
+ </geshi> " ;
1768
+
1769
+ /////////////////////////////////////////////////////////////////////////
You can’t perform that action at this time.
0 commit comments