Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | python 2/3 compat: commands vs subprocess | Serge Guelton | 2019-03-26 | 1 | -1/+0 |
| | | | | | | Differential Revision: https://reviews.llvm.org/D59584 llvm-svn: 356995 | ||||
* | Python 2/3 compatibility: from __future__ import print_function | Serge Guelton | 2019-03-21 | 1 | -6/+8 |
| | | | | | | Differential Revision: https://reviews.llvm.org/D59580 llvm-svn: 356695 | ||||
* | *** This commit represents a complete reformatting of the LLDB source code | Kate Stone | 2016-09-06 | 1 | -24/+43 |
| | | | | | | | | | | | | | | | | | | | | | | | *** 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. llvm-svn: 280751 | ||||
* | Fix typos. | Bruce Mitchener | 2014-07-01 | 1 | -1/+1 |
| | | | | llvm-svn: 212132 | ||||
* | Fixed up the command so that it doesn't dump the first arguments when run ↵ | Greg Clayton | 2012-03-23 | 1 | -7/+8 |
| | | | | | | from the command line which was causing this script to dump the script itself. llvm-svn: 153294 | ||||
* | Added python script that implements a "parse_log_file" command in LLDB which can | Greg Clayton | 2012-03-22 | 1 | -0/+114 |
parse the output from "log enable --timestamp ...." and converts it to be relative to the first timestamp and shows the time deltas between log lines. This can also be used as a stand along script outside of lldb: ./delta.py log.txt llvm-svn: 153288 |