Hi Vladimir. I've attached a small patch to the ofed_1_2_scripts
build.sh file for the mvapich2() function. This fixes bug 372 where the
F90 compiler was not being set properly for the GNU compiler case and
other possible compilers in the path were being found. This patch is
against the latest ofed_1_2_scripts git.
--
Shaun Rowland   [EMAIL PROTECTED]
http://www.cse.ohio-state.edu/~rowland/
diff --git a/build.sh b/build.sh
index ae5ea1e..86894be 100755
--- a/build.sh
+++ b/build.sh
@@ -528,9 +528,9 @@ mvapich2()
                 MVAPICH2_COMP_ENV="CC=gcc CXX=g++"
 
                 if [ $is_gfortran -eq 1 ]; then
-                    MVAPICH2_COMP_ENV="$MVAPICH2_COMP_ENV F77=gfortran"
+                    MVAPICH2_COMP_ENV="$MVAPICH2_COMP_ENV F77=gfortran 
F90=gfortran"
                 elif [ $is_gcc_g77 -eq 1 ]; then
-                    MVAPICH2_COMP_ENV="$MVAPICH2_COMP_ENV F77=g77"
+                    MVAPICH2_COMP_ENV="$MVAPICH2_COMP_ENV F77=g77 F90=g77"
                 fi
             ;;
             pathscale)
_______________________________________________
openib-general mailing list
openib-general@openib.org
http://openib.org/mailman/listinfo/openib-general

To unsubscribe, please visit http://openib.org/mailman/listinfo/openib-general

Reply via email to