summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeff Johnston <jjohnstn@redhat.com>2020-01-21 14:54:49 -0500
committerJeff Johnston <jjohnstn@redhat.com>2020-01-21 14:55:25 -0500
commitf5da56ab5c033d4e061b653d2592a8a65fb4bed7 (patch)
treeeb36229c3f2847ddd79c1ff309975785231403ca
parent6cc299f0e20e4b76f7dbab5ea8c296ffa4859b62 (diff)
downloadcygnal-f5da56ab5c033d4e061b653d2592a8a65fb4bed7.tar.gz
cygnal-f5da56ab5c033d4e061b653d2592a8a65fb4bed7.tar.bz2
cygnal-f5da56ab5c033d4e061b653d2592a8a65fb4bed7.zip
Default newlib_reent_check_verify to yes in configure.host
-rw-r--r--newlib/configure.host6
1 files changed, 3 insertions, 3 deletions
diff --git a/newlib/configure.host b/newlib/configure.host
index 43beb829a..406dac861 100644
--- a/newlib/configure.host
+++ b/newlib/configure.host
@@ -77,7 +77,7 @@ default_newlib_io_long_double=no
default_newlib_io_pos_args=no
default_newlib_atexit_dynamic_alloc=yes
default_newlib_nano_malloc=no
-default_newlib_reent_check_verify=no
+default_newlib_reent_check_verify=yes
aext=a
oext=o
lpfx="lib_a-"
@@ -970,8 +970,8 @@ fi
# Enable _REENT_CHECK macro memory allocation verification.
if [ "x${newlib_reent_check_verify}" = "x" ]; then
- if [ ${default_newlib_reent_check_verify} = "yes" ]; then
- newlib_reent_check_verify="yes";
+ if [ ${default_newlib_reent_check_verify} = "no" ]; then
+ newlib_reent_check_verify="no";
fi
fi