summaryrefslogtreecommitdiffstats
path: root/lldb/use_lldb_suite_root.py
diff options
context:
space:
mode:
Diffstat (limited to 'lldb/use_lldb_suite_root.py')
-rw-r--r--lldb/use_lldb_suite_root.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/lldb/use_lldb_suite_root.py b/lldb/use_lldb_suite_root.py
index 466de5d7a4a..5492d4081ac 100644
--- a/lldb/use_lldb_suite_root.py
+++ b/lldb/use_lldb_suite_root.py
@@ -11,5 +11,12 @@ def add_third_party_module_dirs(lldb_root):
for module_dir in module_dirs:
module_dir = os.path.join(third_party_modules_dir, module_dir)
sys.path.insert(0, module_dir)
+
+def add_lldbsuite_packages_dir(lldb_root):
+ packages_dir = os.path.join(lldb_root, "packages", "Python")
+ sys.path.insert(0, packages_dir)
+
lldb_root = os.path.dirname(inspect.getfile(inspect.currentframe()))
+
add_third_party_module_dirs(lldb_root)
+add_lldbsuite_packages_dir(lldb_root)
OpenPOWER on IntegriCloud