summaryrefslogtreecommitdiff
path: root/buildscripts/hang_analyzer.py
diff options
context:
space:
mode:
authorJonathan Abrahams <jonathan@mongodb.com>2016-03-09 09:05:56 -0500
committerJonathan Abrahams <jonathan@mongodb.com>2016-03-09 09:06:18 -0500
commit4019e38d105597df8320e4958cc2be784157378d (patch)
tree789e43c4316e41fa8ad0eebb426d88fdfb275453 /buildscripts/hang_analyzer.py
parent01e2eb504ecdbb867bec6652a4f58b92b2bd37ea (diff)
downloadmongo-4019e38d105597df8320e4958cc2be784157378d.tar.gz
SERVER-23006 hang_analyzer should use GDB in the mongodb tool chain
Diffstat (limited to 'buildscripts/hang_analyzer.py')
-rwxr-xr-xbuildscripts/hang_analyzer.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/buildscripts/hang_analyzer.py b/buildscripts/hang_analyzer.py
index d7a57ac88ca..82dad9f940a 100755
--- a/buildscripts/hang_analyzer.py
+++ b/buildscripts/hang_analyzer.py
@@ -261,7 +261,7 @@ class GDBDumper(object):
def __find_debugger(self):
"""Finds the installed debugger"""
- return find_program('gdb', ['/usr/bin'])
+ return find_program('gdb', ['/opt/mongodbtoolchain/bin', '/usr/bin'])
def dump_info(self, pid, process_name, stream):
dbg = self.__find_debugger()