mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-01-01 13:20:25 +00:00
af383ff70c
The idea behind this patch is to expose the meat of LLDB's Python infrastructure (test suite, scripts, etc) as a single package. This makes reusability and code sharing among sub-packages easy. Differential Revision: http://reviews.llvm.org/D14131 llvm-svn: 251460
23 lines
730 B
Python
23 lines
730 B
Python
import inspect
|
|
import os
|
|
import sys
|
|
|
|
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)
|
|
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)
|