Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Sudheer Chunduri
darshan
Commits
d3b6727c
Commit
d3b6727c
authored
Feb 05, 2015
by
Philip Carns
Browse files
fix library name for mpich 3.1.1+ cxx builds
parent
fa863d34
Changes
2
Show whitespace changes
Inline
Side-by-side
ChangeLog
View file @
d3b6727c
...
@@ -25,8 +25,8 @@ darshan-2.3.1-pre2
...
@@ -25,8 +25,8 @@ darshan-2.3.1-pre2
- label I/O vs. meta time more clearly
- label I/O vs. meta time more clearly
- include unique file meta time in agg_perf_by_slowest calculation
- include unique file meta time in agg_perf_by_slowest calculation
* added regression test script framework in darshan-test/regression/
* added regression test script framework in darshan-test/regression/
* update darshan-gen-fortran.pl
to support new Fortran library name in
* update darshan-gen-fortran.pl
and darshan-gen-cxx.pl to support new library
MPICH 3.1.1
naming conventions in MPICH 3.1.1 and higher
darshan-2.3.0
darshan-2.3.0
=============
=============
...
...
darshan-runtime/darshan-gen-cxx.pl.in
View file @
d3b6727c
...
@@ -274,10 +274,14 @@ print OUTPUT<<"EOF";
...
@@ -274,10 +274,14 @@ print OUTPUT<<"EOF";
if [ \$? -eq 0 ] ; then
if [ \$? -eq 0 ] ; then
CXXMPICH=-lcxxmpich
CXXMPICH=-lcxxmpich
fi
fi
grep -E cxxmpich\\.cnk.a \$tmpfile >& /dev/null
grep -E cxxmpich\\.cnk
\\
.a \$tmpfile >& /dev/null
if [ \$? -eq 0 ] ; then
if [ \$? -eq 0 ] ; then
CXXMPICH=-lcxxmpich.cnk
CXXMPICH=-lcxxmpich.cnk
fi
fi
grep -E mpicxx\\.a \$tmpfile >& /dev/null
if [ \$? -eq 0 ] ; then
CXXMPICH=-lmpicxx
fi
rm \$tmpfile >& /dev/null
rm \$tmpfile >& /dev/null
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment