Skip to content

Commit ac69a97

Browse files
authored
Makefile: disabled usage of _GLIBCXX_DEBUG for now (#7782)
this was blowing some builds (including the selfcheck) in the CI.
1 parent d9a054c commit ac69a97

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ ifeq (clang++, $(findstring clang++,$(CXX)))
132132
CPPCHK_GLIBCXX_DEBUG=
133133
endif
134134
ifndef CXXFLAGS
135-
CXXFLAGS=-pedantic -Wall -Wextra -Wcast-qual -Wfloat-equal -Wmissing-declarations -Wmissing-format-attribute -Wno-long-long -Wpacked -Wredundant-decls -Wundef -Wno-sign-compare -Wno-multichar -Woverloaded-virtual $(CPPCHK_GLIBCXX_DEBUG) -g
135+
CXXFLAGS=-pedantic -Wall -Wextra -Wcast-qual -Wfloat-equal -Wmissing-declarations -Wmissing-format-attribute -Wno-long-long -Wpacked -Wredundant-decls -Wundef -Wno-sign-compare -Wno-multichar -Woverloaded-virtual -g
136136
endif
137137

138138
ifeq (g++, $(findstring g++,$(CXX)))

tools/dmake/dmake.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -725,7 +725,7 @@ int main(int argc, char **argv)
725725
"-Wno-sign-compare "
726726
"-Wno-multichar "
727727
"-Woverloaded-virtual "
728-
"$(CPPCHK_GLIBCXX_DEBUG) "
728+
//"$(CPPCHK_GLIBCXX_DEBUG) " // TODO: when using CXXOPTS this would always be set - need to handle this differently
729729
"-g");
730730
}
731731

0 commit comments

Comments
 (0)