Remove NDEBUG option

Bitcoin code is crashed (SEGFAULT) being compiled with `-DNDEBUG` option (see https://github.com/bitcoin/bitcoin/blob/master/src/main.cpp#L32)
This commit is contained in:
Denis Ryabov 2014-11-10 23:36:38 +03:00
parent 5e85af73fb
commit d473dd482b

View File

@ -442,7 +442,7 @@ AS_CASE(["$ARG_ENABLE_DEBUG"],
],
["no"], [
AC_MSG_RESULT([no])
AC_DEFINE([NDEBUG],[1],[Define to disable debug code.])
#AC_DEFINE([NDEBUG],[1],[Define to disable debug code.])
#COMPILETIME_OPTIONS="$COMPILETIME_OPTIONS -DNDEBUG "
DEBUGFLAGS="-Os"
],