From 5d285a2d5a561308ad6703e1ff284d106eb01032 Mon Sep 17 00:00:00 2001 From: Andrey Semashev Date: Sat, 23 May 2020 19:02:45 +0300 Subject: [PATCH] Disabled libstdc++ debug mode to work around gcc 10.1 bug. The debug mode fails to compile in C++11 mode because of https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95289. --- test/Jamfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/Jamfile b/test/Jamfile index b389925..c3f1aea 100644 --- a/test/Jamfile +++ b/test/Jamfile @@ -14,7 +14,8 @@ project detail/test clang:-ftemplate-depth-300 gcc:-ftemplate-depth-300 gcc:_STLP_DEBUG - gcc:_GLIBCXX_DEBUG + # Do not enable libstdc++ debug mode because of gcc 10.1 bug https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95289 + # gcc:_GLIBCXX_DEBUG darwin:-ftemplate-depth-300 ;