aboutsummaryrefslogtreecommitdiff
path: root/gdb/cp-name-parser.y
diff options
context:
space:
mode:
authorManoj Gupta <manojgupta@google.com>2023-04-17 13:33:15 -0700
committerRoland McGrath <mcgrathr@google.com>2023-04-29 00:35:11 -0700
commite0f4b3ec5f36ff90dbea21aab2190fb4565ca67b (patch)
tree4bc6cccc146f7213100c5f1fc9642a3eb63fbdb4 /gdb/cp-name-parser.y
parentbc752bfbd98b6c2b02d59ed0a6c7ca88fbf4e3e0 (diff)
downloadfsf-binutils-gdb-e0f4b3ec5f36ff90dbea21aab2190fb4565ca67b.zip
fsf-binutils-gdb-e0f4b3ec5f36ff90dbea21aab2190fb4565ca67b.tar.gz
fsf-binutils-gdb-e0f4b3ec5f36ff90dbea21aab2190fb4565ca67b.tar.bz2
gdb: Fix building with latest libc++
Latest libc++[1] causes transitive include to <locale> when <mutex> or <thread> header is included. This causes gdb to not build[2] since <locale> defines isupper/islower etc. functions that are explicitly macroed-out in safe-ctype.h to prevent their use. Use the suggestion from libc++ to include <locale> internally when building in C++ mode to avoid build errors. Use safe-gdb-ctype.h as the include instead of "safe-ctype.h" to keep this isolated to gdb since rest of binutils does not seem to use much C++. [1]: https://reviews.llvm.org/D144331 [2]: https://issuetracker.google.com/issues/277967395
Diffstat (limited to 'gdb/cp-name-parser.y')
-rw-r--r--gdb/cp-name-parser.y2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/cp-name-parser.y b/gdb/cp-name-parser.y
index 175e763..8018807 100644
--- a/gdb/cp-name-parser.y
+++ b/gdb/cp-name-parser.y
@@ -40,7 +40,7 @@
#include "defs.h"
#include <unistd.h>
-#include "safe-ctype.h"
+#include "gdbsupport/gdb-safe-ctype.h"
#include "demangle.h"
#include "cp-support.h"
#include "c-support.h"