<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
<html lang="en">
<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type">
<title>
GitLab
</title>

</head>
<body>
<style type="text/css">
img {
max-width: 100%; height: auto;
}
</style>
<div class="content">
<h3>
Shane Snyder pushed to branch master
at <a href="https://xgitlab.cels.anl.gov/darshan/darshan">darshan / darshan</a>
</h3>
<h4>
Commits:
</h4>
<ul>
<li>
<strong><a href="https://xgitlab.cels.anl.gov/darshan/darshan/commit/4f1dbfc794d2fcd02b9fcb36115a90084f11c886">4f1dbfc7</a></strong>
<div>
<span>by Shane Snyder</span>
<i>at 2016-05-12T09:49:38-05:00</i>
</div>
<pre class="commit-message" style="white-space: pre-wrap">fix typos in fortran env vars in runtime docs</pre>
</li>
<li>
<strong><a href="https://xgitlab.cels.anl.gov/darshan/darshan/commit/f75b434949820b98d6f2fd8bca21f378272ef28c">f75b4349</a></strong>
<div>
<span>by Shane Snyder</span>
<i>at 2016-05-12T17:13:29-05:00</i>
</div>
<pre class="commit-message" style="white-space: pre-wrap">fortran compiler generator autodetects mpich libs

this functionality is helpful especially on mira/cetus where
the mpich libraries are named depending on the fortran version
and the type of compiler being used (gcc, xl, etc.).</pre>
</li>
<li>
<strong><a href="https://xgitlab.cels.anl.gov/darshan/darshan/commit/b41c9d63248117c83c5c6165b39e77403d3277dc">b41c9d63</a></strong>
<div>
<span>by Shane Snyder</span>
<i>at 2016-05-13T10:38:56-05:00</i>
</div>
<pre class="commit-message" style="white-space: pre-wrap">cxx compiler generators autodetect mpich lib name</pre>
</li>
</ul>
<h4>3 changed files:</h4>
<ul>
<li class="file-stats">
<a href="#620f2ecad2bb6f74b2fcd0134963a841" style="text-decoration: none">
darshan-runtime/darshan-gen-cxx.pl.in
</a>
</li>
<li class="file-stats">
<a href="#ad29afc395839758d41094872298bd0d" style="text-decoration: none">
darshan-runtime/darshan-gen-fortran.pl.in
</a>
</li>
<li class="file-stats">
<a href="#c0b0bf6d71bc5fc7e6d50d69c8aa2413" style="text-decoration: none">
darshan-runtime/doc/darshan-runtime.txt
</a>
</li>
</ul>
<h4>Changes:</h4>
<li id="620f2ecad2bb6f74b2fcd0134963a841">
<a href="https://xgitlab.cels.anl.gov/darshan/darshan/compare/a3b2cfb9aaa057df2487149025b2a0fd0b67d9a1...b41c9d63248117c83c5c6165b39e77403d3277dc#diff-0">
<strong>
darshan-runtime/darshan-gen-cxx.pl.in
</strong>
</a>
<hr>
<pre class="highlight"><code><span style="background: #ffdddd; color: #000000">--- a/darshan-runtime/darshan-gen-cxx.pl.in
</span><span style="background: #ddffdd; color: #000000">+++ b/darshan-runtime/darshan-gen-cxx.pl.in
</span><span style="color: #aaaaaa">@@ -282,6 +282,10 @@ print OUTPUT<<"EOF";
</span>     if [ \$? -eq 0 ] ; then
         CXXMPICH=-lmpicxx
     fi
<span style="background: #ddffdd; color: #000000">+    bgqlib_out=`grep -m 1 -Po "libmpichcxx-\\S+" \$tmpfile`
+    if [ \$? -eq 0 ] ; then
+        CXXMPICH=`echo \$bgqlib_out | sed 's/libmpichcxx-\\(.*\\)\\.a.*/-lmpichcxx-\\1/'`
+    fi
</span> 
     rm \$tmpfile >& /dev/null
 
</code></pre>

<br>
</li>
<li id="ad29afc395839758d41094872298bd0d">
<a href="https://xgitlab.cels.anl.gov/darshan/darshan/compare/a3b2cfb9aaa057df2487149025b2a0fd0b67d9a1...b41c9d63248117c83c5c6165b39e77403d3277dc#diff-1">
<strong>
darshan-runtime/darshan-gen-fortran.pl.in
</strong>
</a>
<hr>
<pre class="highlight"><code><span style="background: #ffdddd; color: #000000">--- a/darshan-runtime/darshan-gen-fortran.pl.in
</span><span style="background: #ddffdd; color: #000000">+++ b/darshan-runtime/darshan-gen-fortran.pl.in
</span><span style="color: #aaaaaa">@@ -287,7 +287,13 @@ print OUTPUT<<"EOF";
</span>         if [ \$rc_cnk_check -eq 0 ] ; then
             FMPICH=-lfmpich.cnk
         else
<span style="background: #ffdddd; color: #000000">-            FMPICH=-lfmpich
</span><span style="background: #ddffdd; color: #000000">+            bgqlib_out=`grep -Po "libmpichf\\S\+\-\\S\+" \$tmpfile 2>/dev/null`
+            rc_bgqlib_check=\$?
+            if [ \$rc_bgqlib_check -eq 0 ] ; then
+                FMPICH=`echo \$bgqlib_out | sed 's/libmpich\\(.*\\)-\\(.*\\).a/-lmpich\\1-\\2/'`
+            else
+                FMPICH=-lfmpich
+            fi
</span>         fi
     fi
 
</code></pre>

<br>
</li>
<li id="c0b0bf6d71bc5fc7e6d50d69c8aa2413">
<a href="https://xgitlab.cels.anl.gov/darshan/darshan/compare/a3b2cfb9aaa057df2487149025b2a0fd0b67d9a1...b41c9d63248117c83c5c6165b39e77403d3277dc#diff-2">
<strong>
darshan-runtime/doc/darshan-runtime.txt
</strong>
</a>
<hr>
<pre class="highlight"><code><span style="background: #ffdddd; color: #000000">--- a/darshan-runtime/doc/darshan-runtime.txt
</span><span style="background: #ddffdd; color: #000000">+++ b/darshan-runtime/doc/darshan-runtime.txt
</span><span style="color: #aaaaaa">@@ -169,8 +169,8 @@ Example for MPICH 3.1 or earlier:
</span> ----
 export MPICC_PROFILE=$DARSHAN_PREFIX/share/mpi-profile/darshan-cc
 export MPICXX_PROFILE=$DARSHAN_PREFIX/share/mpi-profile/darshan-cxx
<span style="background: #ffdddd; color: #000000">-export MPICF77_PROFILE=$DARSHAN_PREFIX/share/mpi-profile/darshan-f
-export MPICF90_PROFILE=$DARSHAN_PREFIX/share/mpi-profile/darshan-f
</span><span style="background: #ddffdd; color: #000000">+export MPIF77_PROFILE=$DARSHAN_PREFIX/share/mpi-profile/darshan-f
+export MPIF90_PROFILE=$DARSHAN_PREFIX/share/mpi-profile/darshan-f
</span> ----
 
 Examples for command line use:
<span style="color: #aaaaaa">@@ -313,8 +313,8 @@ Blue Gene profiling configuration example:
</span> ----
 export MPICC_PROFILE=$DARSHAN_PREFIX/share/mpi-profile/darshan-bg-cc
 export MPICXX_PROFILE=$DARSHAN_PREFIX/share/mpi-profile/darshan-bg-cxx
<span style="background: #ffdddd; color: #000000">-export MPICF77_PROFILE=$DARSHAN_PREFIX/share/mpi-profile/darshan-bg-f
-export MPICF90_PROFILE=$DARSHAN_PREFIX/share/mpi-profile/darshan-bg-f
</span><span style="background: #ddffdd; color: #000000">+export MPIF77_PROFILE=$DARSHAN_PREFIX/share/mpi-profile/darshan-bg-f
+export MPIF90_PROFILE=$DARSHAN_PREFIX/share/mpi-profile/darshan-bg-f
</span> ----
 
 === Cray platforms (XE, XC, or similar)
</code></pre>

<br>
</li>

</div>
<div class="footer" style="margin-top: 10px">
<p style="color: #777; font-size: small">

<br>
<a href="https://xgitlab.cels.anl.gov/darshan/darshan/compare/a3b2cfb9aaa057df2487149025b2a0fd0b67d9a1...b41c9d63248117c83c5c6165b39e77403d3277dc">View it on GitLab</a>.
<br>
You're receiving this email because of your account on xgitlab.cels.anl.gov.
If you'd like to receive fewer emails, you can
adjust your notification settings.

</p>
</div>
</body>
</html>