summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Egesdahl <ryan.egesdahl@mongodb.com>2022-03-03 15:00:52 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2022-12-28 22:26:44 +0000
commit0ad1c7a979d8e412ad96c7af42b1ededc8dee810 (patch)
treeb95c25b780bf48401fa90d85c4f16aa3e0c84958
parent157eee46937d53fe4d02a26663a333ffc8996c3d (diff)
downloadmongo-0ad1c7a979d8e412ad96c7af42b1ededc8dee810.tar.gz
SERVER-61032 Ensure all current references to GDB are for v3 toolchain
(cherry picked from commit 65cf760916f7fe0e3d06f5e06a53e0a96b24d947) (cherry picked from commit f7cb4b6b001045eb51465bfdd232d1c6852df8ab)
-rw-r--r--buildscripts/resmokelib/hang_analyzer/dumper.py2
-rw-r--r--buildscripts/setup_spawnhost_coredump4
2 files changed, 3 insertions, 3 deletions
diff --git a/buildscripts/resmokelib/hang_analyzer/dumper.py b/buildscripts/resmokelib/hang_analyzer/dumper.py
index 151eaf0d193..6d69a6d2884 100644
--- a/buildscripts/resmokelib/hang_analyzer/dumper.py
+++ b/buildscripts/resmokelib/hang_analyzer/dumper.py
@@ -210,7 +210,7 @@ class GDBDumper(Dumper):
@staticmethod
def __find_debugger(debugger):
"""Find the installed debugger."""
- return find_program(debugger, ['/opt/mongodbtoolchain/gdb/bin', '/usr/bin'])
+ return find_program(debugger, ['/opt/mongodbtoolchain/v3/bin', '/usr/bin'])
def dump_info( # pylint: disable=too-many-arguments,too-many-locals
self, root_logger, logger, pinfo, take_dump):
diff --git a/buildscripts/setup_spawnhost_coredump b/buildscripts/setup_spawnhost_coredump
index 4becf602e77..7c73efcd7f7 100644
--- a/buildscripts/setup_spawnhost_coredump
+++ b/buildscripts/setup_spawnhost_coredump
@@ -3,7 +3,7 @@
cat >> ~/.profile <<EOF
# Coredumps generated by a toolchain built mongodb can be problematic when examined with the system
# gdb.
-export PATH=/opt/mongodbtoolchain/gdb/bin:$PATH
+export PATH=/opt/mongodbtoolchain/v3/bin:$PATH
# As per below, put the user into the appropriate directory. This is where gdb is expected to be
# invoked from.
cd debug
@@ -21,7 +21,7 @@ echo
echo "To examine a core dump, type 'gdb ./<binary> ./<core file>'"
EOF
-export PATH=/opt/mongodbtoolchain/gdb/bin:$PATH
+export PATH=/opt/mongodbtoolchain/v3/bin:$PATH
echo 'if [ -f ~/.profile ]; then
. ~/.profile
fi' >> .bash_profile