Remove _GLIBCXX_CONCEPT_CHECKS debug define

This debug feature does not support any C++11 features.
It breaks for example the compilation of vector<unique_ptr>.

The upstream issue is:
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=57011
This commit is contained in:
BtbN
2014-09-05 23:56:41 +02:00
parent 40d1dc1883
commit 7b7d10fd84
-1
View File
@@ -203,7 +203,6 @@ if test "$DEBUG" != "no"; then
# But they cause crashes on cygwin while loading modules
AC_DEFINE([_GLIBCXX_DEBUG], [1], [Enable extra debugging checks in libstdc++])
AC_DEFINE([_GLIBCXX_DEBUG_PEDANTIC], [1], [Enable extra debugging checks in libstdc++])
AC_DEFINE([_GLIBCXX_CONCEPT_CHECKS], [1], [Enable extra debugging checks in libstdc++])
fi
else
if test "x$OPTIMIZE" = "xyes"; then