[mpich-commits] [mpich] MPICH primary repository branch, master, updated. v3.0.3-44-g1a1ff11
mysql vizuser
noreply at mpich.org
Tue Apr 23 10:49:30 CDT 2013
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "MPICH primary repository".
The branch, master has been updated
via 1a1ff11ed57a670118e7209c65d3ec7bdc8244c4 (commit)
from fbc070994cc58f713ecb206721da42b9d8c95dcb (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://git.mpich.org/mpich.git/commitdiff/1a1ff11ed57a670118e7209c65d3ec7bdc8244c4
commit 1a1ff11ed57a670118e7209c65d3ec7bdc8244c4
Author: Pavan Balaji <balaji at mcs.anl.gov>
Date: Tue Apr 23 07:49:11 2013 -0500
Reorder C and C++ compiler search list.
Use similar compiler search ordering for C and C++ as Fortran. Some
of the compilers, such as gcc, do not make sense in the C++ compiler
search list, but this patch does not eliminate them.
Reviewed by goodell.
diff --git a/confdb/aclocal_cc.m4 b/confdb/aclocal_cc.m4
index 237c435..07b5548 100644
--- a/confdb/aclocal_cc.m4
+++ b/confdb/aclocal_cc.m4
@@ -4,7 +4,7 @@ ifdef([AC_PROG_CC_GNU],,[AC_DEFUN([AC_PROG_CC_GNU],)])
dnl PAC_PROG_CC - reprioritize the C compiler search order
AC_DEFUN([PAC_PROG_CC],[
PAC_PUSH_FLAG([CFLAGS])
- AC_PROG_CC([gcc icc pgcc xlc xlC pathcc cc])
+ AC_PROG_CC([icc pgcc xlc xlC pathcc cc gcc])
PAC_POP_FLAG([CFLAGS])
])
dnl
diff --git a/confdb/aclocal_cxx.m4 b/confdb/aclocal_cxx.m4
index ec4a5a2..2f5cacc 100644
--- a/confdb/aclocal_cxx.m4
+++ b/confdb/aclocal_cxx.m4
@@ -1,7 +1,7 @@
dnl PAC_CXX_SEARCH_LIST - expands to a whitespace separated list of C++
dnl compilers for use with AC_PROG_CXX that is more suitable for HPC software
dnl packages
-AC_DEFUN([PAC_CXX_SEARCH_LIST],[$CCC c++ g++ gcc CC cxx cc++ cl pgCC xlC icpc pathCC])
+AC_DEFUN([PAC_CXX_SEARCH_LIST],[$CCC icpc pgCC xlC pathCC c++ cxx CC g++ gcc cc++ cl])
dnl PAC_PROG_CXX - reprioritize the C++ compiler search order
dnl NOTE: this macro suffers from a basically intractable "expanded before it
dnl was required" problem when libtool is also used
-----------------------------------------------------------------------
Summary of changes:
confdb/aclocal_cc.m4 | 2 +-
confdb/aclocal_cxx.m4 | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
hooks/post-receive
--
MPICH primary repository
More information about the commits
mailing list