[mpich-commits] [mpich] MPICH primary repository branch, master, updated. v3.1-46-ga9eca8f

Service Account noreply at mpich.org
Fri Mar 14 14:30:46 CDT 2014


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  a9eca8fe6f800204a4b104098e7e519b7ef65f26 (commit)
      from  6d076d4cd3b51f32dbd689746e1b0684287c36d9 (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/a9eca8fe6f800204a4b104098e7e519b7ef65f26

commit a9eca8fe6f800204a4b104098e7e519b7ef65f26
Author: Ken Raffenetti <raffenet at mcs.anl.gov>
Date:   Thu Mar 13 17:56:12 2014 -0500

    fix $wl setting for Solaris Studio compilers
    
    The Solaris/Sun compilers accept the -Wl, style flags for passing
    arguments to the linker in version 8.5 on Linux. We wse this method,
    as the compiler no longer passes unrecognized flags to the linker
    by default. The matching logic in config.rpath is mostly borrowed
    from libtool commit [a55208d5]. Fixes #2045
    
    Signed-off-by: Huiwei Lu <huiweilu at mcs.anl.gov>

diff --git a/confdb/config.rpath b/confdb/config.rpath
index 45bd85c..82db9a2 100755
--- a/confdb/config.rpath
+++ b/confdb/config.rpath
@@ -94,9 +94,12 @@ else
           ;;
         *)
           case `$CC -V 2>&1 | sed 5q` in
-            *Sun\ F* | *Sun*Fortran*)
+            *Sun\ Ceres\ Fortran* | *Sun*Fortran*\ [[1-7]].* | *Sun*Fortran*\ 8.[[0-4]]*)
               wl=
               ;;
+            *Sun\ F* | *Sun*Fortran*)
+              wl='-Wl,'
+              ;;
             *Sun\ C*)
               wl='-Wl,'
               ;;

-----------------------------------------------------------------------

Summary of changes:
 confdb/config.rpath |    5 ++++-
 1 files changed, 4 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
MPICH primary repository


More information about the commits mailing list