Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update configure to disable memory alloc sanity check in Hdf5 1 12 1 #687

Merged
merged 15 commits into from
May 25, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 6 additions & 11 deletions configure
Original file line number Diff line number Diff line change
Expand Up @@ -1855,8 +1855,7 @@ Optional Features:
allocation sanity checking. This could cause more
memory use and somewhat slower allocation. This
option is orthogonal to the
--enable-using-memchecker option. [default=yes if
debug build, otherwise no]
--enable-using-memchecker option. [default=no]
--enable-parallel Search for MPI-IO and MPI support files
--enable-instrument Enable library instrumentation of optimization
tracing (only used with parallel builds).
Expand Down Expand Up @@ -9811,7 +9810,7 @@ else
JAVA_TEST=Test.java
CLASS_TEST=Test.class
cat << \EOF > $JAVA_TEST
/* #line 9814 "configure" */
/* #line 9813 "configure" */
public class Test {
}
EOF
Expand Down Expand Up @@ -10027,7 +10026,7 @@ else
JAVA_TEST=Test.java
CLASS_TEST=Test.class
cat << \EOF > $JAVA_TEST
/* #line 10030 "configure" */
/* #line 10029 "configure" */
public class Test {
}
EOF
Expand Down Expand Up @@ -10061,7 +10060,7 @@ JAVA_TEST=Test.java
CLASS_TEST=Test.class
TEST=Test
cat << \EOF > $JAVA_TEST
/* [#]line 10064 "configure" */
/* [#]line 10063 "configure" */
public class Test {
public static void main (String args[]) {
System.exit (0);
Expand Down Expand Up @@ -10456,7 +10455,7 @@ else


cat << \EOF > Test.java
/* #line 10459 "configure" */
/* #line 10458 "configure" */
import junit.textui.TestRunner;
public class Test {

Expand Down Expand Up @@ -31692,11 +31691,7 @@ fi

## Set default
if test "X-$MEMORYALLOCSANITYCHECK" = X- ; then
if test "X-$BUILD_MODE" = "X-debug" ; then
MEMORYALLOCSANITYCHECK=yes
else
MEMORYALLOCSANITYCHECK=no
fi
MEMORYALLOCSANITYCHECK=no
fi

case "X-$MEMORYALLOCSANITYCHECK" in
Expand Down