2015-10-20 21:05:57 +00:00
|
|
|
import inspect
|
|
|
|
import os
|
|
|
|
import sys
|
|
|
|
|
2016-09-06 20:57:50 +00:00
|
|
|
|
2015-10-20 21:05:57 +00:00
|
|
|
def add_third_party_module_dirs(lldb_root):
|
|
|
|
third_party_modules_dir = os.path.join(
|
|
|
|
lldb_root, "third_party", "Python", "module")
|
|
|
|
if not os.path.isdir(third_party_modules_dir):
|
|
|
|
return
|
|
|
|
|
|
|
|
module_dirs = os.listdir(third_party_modules_dir)
|
|
|
|
for module_dir in module_dirs:
|
|
|
|
module_dir = os.path.join(third_party_modules_dir, module_dir)
|
2015-10-22 19:55:18 +00:00
|
|
|
sys.path.insert(0, module_dir)
|
2015-10-27 22:33:47 +00:00
|
|
|
|
2016-09-06 20:57:50 +00:00
|
|
|
|
2015-10-27 22:33:47 +00:00
|
|
|
def add_lldbsuite_packages_dir(lldb_root):
|
|
|
|
packages_dir = os.path.join(lldb_root, "packages", "Python")
|
|
|
|
sys.path.insert(0, packages_dir)
|
|
|
|
|
2015-10-20 21:05:57 +00:00
|
|
|
lldb_root = os.path.dirname(inspect.getfile(inspect.currentframe()))
|
2015-10-27 22:33:47 +00:00
|
|
|
|
2015-10-20 21:05:57 +00:00
|
|
|
add_third_party_module_dirs(lldb_root)
|
2015-10-27 22:33:47 +00:00
|
|
|
add_lldbsuite_packages_dir(lldb_root)
|