summaryrefslogtreecommitdiff
path: root/use_lldb_suite_root.py
diff options
context:
space:
mode:
authorKate Stone <katherine.stone@apple.com>2016-09-06 20:57:50 +0000
committerKate Stone <katherine.stone@apple.com>2016-09-06 20:57:50 +0000
commita015ff55b22de49a8805ab5c368e5eca6a20d748 (patch)
treebe2c8a4e39125a86a0abc1849ffb86ef3e3215df /use_lldb_suite_root.py
parent063858bb04fcfbd1272d85dc8f25b913975b0c95 (diff)
*** This commit represents a complete reformatting of the LLDB source code
*** to conform to clang-format’s LLVM style. This kind of mass change has *** two obvious implications: Firstly, merging this particular commit into a downstream fork may be a huge effort. Alternatively, it may be worth merging all changes up to this commit, performing the same reformatting operation locally, and then discarding the merge for this particular commit. The commands used to accomplish this reformatting were as follows (with current working directory as the root of the repository): find . \( -iname "*.c" -or -iname "*.cpp" -or -iname "*.h" -or -iname "*.mm" \) -exec clang-format -i {} + find . -iname "*.py" -exec autopep8 --in-place --aggressive --aggressive {} + ; The version of clang-format used was 3.9.0, and autopep8 was 1.2.4. Secondly, “blame” style tools will generally point to this commit instead of a meaningful prior commit. There are alternatives available that will attempt to look through this change and find the appropriate prior commit. YMMV. git-svn-id: https://llvm.org/svn/llvm-project/lldb/trunk@280751 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'use_lldb_suite_root.py')
-rw-r--r--use_lldb_suite_root.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/use_lldb_suite_root.py b/use_lldb_suite_root.py
index 5492d4081..d33e280ba 100644
--- a/use_lldb_suite_root.py
+++ b/use_lldb_suite_root.py
@@ -2,8 +2,10 @@ 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")
+ third_party_modules_dir = os.path.join(
+ lldb_root, "third_party", "Python", "module")
if not os.path.isdir(third_party_modules_dir):
return
@@ -12,6 +14,7 @@ def add_third_party_module_dirs(lldb_root):
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)