Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Johnston <jjohnstn@redhat.com>2020-01-21 22:54:49 +0300
committerJeff Johnston <jjohnstn@redhat.com>2020-01-21 22:55:25 +0300
commitf5da56ab5c033d4e061b653d2592a8a65fb4bed7 (patch)
treeeb36229c3f2847ddd79c1ff309975785231403ca /newlib/configure.host
parent6cc299f0e20e4b76f7dbab5ea8c296ffa4859b62 (diff)
Default newlib_reent_check_verify to yes in configure.host
Diffstat (limited to 'newlib/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