summaryrefslogtreecommitdiffstats
path: root/lldb/www
Commit message (Collapse)AuthorAgeFilesLines
...
* Add a quick note about how to build lldb with debug info usingJason Molenda2016-09-291-1/+8
| | | | | | cmake/ninja on linux/bsd systems. llvm-svn: 282790
* Remove lldb coding conventions as they are no longer relevant.Jim Ingham2016-09-083-154/+0
| | | | llvm-svn: 280892
* Remove mention of autoconf from the build instructionsTamas Berghammer2016-08-301-37/+0
| | | | | | | | | autoconf+make have been removed from LLVM and LLDB ~6month ago. We shouldn't advertise it on the website as a valid way to build LLDB. Differential revision: https://reviews.llvm.org/D24025 llvm-svn: 280102
* Modify coding conventions to mention include ordering.Zachary Turner2016-08-111-1/+14
| | | | llvm-svn: 278373
* Mention the scripted thread plans in the python reference.Jim Ingham2016-08-051-0/+112
| | | | llvm-svn: 277890
* Update the website with lots of new info about building / testing.Zachary Turner2016-02-242-55/+149
| | | | llvm-svn: 261795
* Add status for LLDB on Windows to status.html.Adrian McCarthy2016-02-091-10/+28
| | | | | | Differential Revision: http://reviews.llvm.org/D16902 llvm-svn: 260328
* Replace tabs with spaces for consistent indentation. No actual text changes.Adrian McCarthy2016-02-041-189/+189
| | | | llvm-svn: 259834
* Replace accidental DOS (and mixed) line endings in a few text filesDimitry Andric2016-01-112-54/+54
| | | | | | | | | | | | | | Summary: Similar to rL256704 and rL256707, fix a few text files which were accidentally checked in with DOS line endings, or mixed line endings. Reviewers: jingham, emaste Subscribers: lldb-commits Differential Revision: http://reviews.llvm.org/D16027 llvm-svn: 257361
* Add note about the "thread until" command to the llvm-gdb cheatsheet.Justin Lebar2016-01-081-0/+9
| | | | | | Differential Revision: http://reviews.llvm.org/D15684 llvm-svn: 257189
* Document NetBSD platform support on the webpageKamil Rytarowski2015-12-055-4/+25
| | | | | | | | | | | | Summary: It's high time. Reviewers: emaste, clayborg Subscribers: labath, joerg, lldb-commits Differential Revision: http://reviews.llvm.org/D14904 llvm-svn: 254858
* Add a sketched out section on adding Language and LanguageRuntime plugins ↵Enrico Granata2015-11-021-0/+23
| | | | | | for language support llvm-svn: 251844
* First pass on www docs: Adding Programming Language Support to LLDBTodd Fiala2015-11-021-0/+170
| | | | | | | We'll hook this up to the main page after Greg, Sean and others iterate on it to a useful point. llvm-svn: 251831
* Support RHEL 7 and similar systems that use architecture-specific Python lib ↵Todd Fiala2015-10-121-1/+1
| | | | | | | | dirs This change commits: http://reviews.llvm.org/D13625 llvm-svn: 250093
* Rename clang_type -> compiler_type for variables.Bruce Mitchener2015-09-241-1/+1
| | | | | | | | | | Reviewers: clayborg Subscribers: lldb-commits Differential Revision: http://reviews.llvm.org/D13102 llvm-svn: 248461
* Fix typos.Bruce Mitchener2015-09-222-4/+4
| | | | | | | | | | | | Summary: Another round of minor typo fixes. Reviewers: clayborg Subscribers: lldb-commits Differential Revision: http://reviews.llvm.org/D13026 llvm-svn: 248243
* [www] Typo fixes.Bruce Mitchener2015-09-074-9/+9
| | | | | | | | | | Reviewers: clayborg, ki.stfu Subscribers: tberghammer, danalbert, srhines, lldb-commits Differential Revision: http://reviews.llvm.org/D12668 llvm-svn: 246969
* Roll dosep.py parallel test runner into dotest.py command lineTodd Fiala2015-09-031-11/+22
| | | | | | | See the following for details: http://reviews.llvm.org/D12587 llvm-svn: 246794
* Fix test.html webpage alignmentPavel Labath2015-09-021-0/+2
| | | | llvm-svn: 246645
* Update to new lists.llvm.orgTanya Lattner2015-08-052-4/+4
| | | | llvm-svn: 244006
* Fix typos.Bruce Mitchener2015-07-221-1/+1
| | | | | | | | | | | | Summary: Fix a bunch of typos. Reviewers: clayborg Subscribers: lldb-commits Differential Revision: http://reviews.llvm.org/D11386 llvm-svn: 242856
* Add support for displaying the language in the frame-format string.Dawn Perchik2015-06-231-0/+1
| | | | | | | | | | | | | | | | | | | Enable ${language} to be specified in the frame-format string to see the current frame's compile unit language in "frame info". Test Plan: debug a C++ program, run to main, and run the lldb commands: settings set frame-format "frame lang=${language}\n" frame info you should see: frame lang=c++ test case added in: ./dotest.py --executable lldb -f SettingsCommandTestCase.test_set_frame_format Reviewers: clayborg Subscribers: lldb-commits Differential Revision: http://reviews.llvm.org/D10561 llvm-svn: 240440
* Fix a variety of typos.Bruce Mitchener2015-06-184-7/+7
| | | | | | No functional change. llvm-svn: 239995
* www - updated build server URLsVince Harron2015-05-271-5/+9
| | | | llvm-svn: 238284
* Start to share SWIG interface files between languages.Bruce Mitchener2015-04-241-1/+1
| | | | | | | | | | | | | | | | | | | | Summary: Move scripts/Python/interface to scripts/interface so that we can start making iterative improvements towards sharing the interface files between multiple languages (each of which would have their own directory as now). Test Plan: Build and see. Reviewers: zturner, emaste, clayborg Reviewed By: clayborg Subscribers: mjsabby, lldb-commits Differential Revision: http://reviews.llvm.org/D9212 llvm-svn: 235676
* Making linking against Python simpler on Windows.Zachary Turner2015-04-101-50/+16
| | | | | | | | | | | | | | | | | | | | | | | | | This patch deprecates the three Python CMake variables in favor of a single variable PYTHON_HOME which points to the root of a python installation. Since building Python doesn't output the files in a structure that is compatible with the PYTHONHOME environment variable, we also provide a script install_custom_python.py which will copy the output of a custom python build to the correct directory structure. The supported workflow after this patch will be to build python once for each configuration and architecture {Debug,Release} x {x86,x64} and then run the script. Then run CMake specifying -DPYTHON_HOME=<path> The first time you do this will probably require you to delete your CMake cache. The old workflow is still supported during a transitionary period, but a warning is printed at CMake time, and this will eventually be removed. Differential Revision: http://reviews.llvm.org/D8979 llvm-svn: 234660
* Add info on running remote test suite to the websitePavel Labath2015-04-093-41/+120
| | | | | | | | | | Reviewers: tberghammer, zturner Subscribers: lldb-commits Differential Revision: http://reviews.llvm.org/D8873 llvm-svn: 234489
* Add documentation about remote debugging to the websitePavel Labath2015-04-083-1/+147
| | | | | | | | | | Reviewers: tberghammer, clayborg Subscribers: tberghammer, lldb-commits Differential Revision: http://reviews.llvm.org/D8871 llvm-svn: 234395
* Add some documentation about cross-compilation to www.Pavel Labath2015-04-071-0/+172
| | | | | | | | | | Reviewers: zturner, vharron, tberghammer, omjavaid Subscribers: tberghammer, lldb-commits Differential Revision: http://reviews.llvm.org/D8610 llvm-svn: 234317
* Fixing typo in tutorial as test commit.Adrian McCarthy2015-03-261-1/+1
| | | | llvm-svn: 233287
* Introduce documentation for Python command objectsEnrico Granata2015-03-131-0/+18
| | | | llvm-svn: 232225
* Update build instructions / coding conventions.Zachary Turner2015-03-102-31/+77
| | | | | | | | | | | | | | This improves the instructions for checking out LLDB, adds more links to LLVM instructions, and more explicitly calls out when we differ from the style guide. Also updates the clang-format configuration file to correctly reflect a 120 column limit. Reviewed by: Jim Ingham Differential Revision: http://reviews.llvm.org/D8222 llvm-svn: 231884
* Fix broken link to 'Obtaining Commit Access'Alex Denisov2015-02-181-2/+2
| | | | llvm-svn: 229697
* Update the coding standard to reflect recent changes.Zachary Turner2015-02-111-6/+0
| | | | | | | | | | | This removes the rule from the LLDB coding standard about putting a space after function names and before parentheses. We now conform to the LLVM style guide. If you previously wrote pointer->func (args), it would now be written pointer->func(args). Using clang-format will do this automatically. llvm-svn: 228860
* Update documenation for the changed in from ${var.script:<pythonfunction>} ↵Greg Clayton2015-02-041-2/+11
| | | | | | to the new ${script.var:<pythonfunction>}. llvm-svn: 228216
* Update the website with information about LLDB on Windows.Zachary Turner2014-12-312-4/+154
| | | | | | | | | | This patch updates the list of supported platforms to include Windows, and also provides some detailed getting started instructions for building LLDB on Windows. Differential Revision: http://reviews.llvm.org/D6805 llvm-svn: 225023
* Fix HTML formatting and non-conformance.Zachary Turner2014-12-311-224/+277
| | | | llvm-svn: 225022
* Add an initial description of the rules for constructing new SB API classes.Jim Ingham2014-12-063-1/+71
| | | | llvm-svn: 223550
* First pass at a description of the lldb coding conventions.Jim Ingham2014-12-052-0/+136
| | | | llvm-svn: 223543
* Fix the behavior of ${current-pc-arrow} in the default disassemblyJason Molenda2014-12-021-0/+7
| | | | | | | | | | | | format for the not-current-stack-frame. This was causing test/functionalities/inferior-assert to fail. Also document the new additions to the format specifications used in the disassembly-format changes to formats.html. <rdar://problem/19102757> llvm-svn: 223096
* Just a few words to introduce the extra optional argument to Python summariesEnrico Granata2014-11-221-0/+4
| | | | llvm-svn: 222594
* Add a few words of documentation for the the $\{var.script:\} featureEnrico Granata2014-10-281-0/+19
| | | | llvm-svn: 220823
* Add a (Python only) lldb.SBSyntheticValueProvider class to our API surfaceEnrico Granata2014-10-081-0/+5
| | | | | | | | On a suggestion from Jim Ingham, this class allows you to very easily define synthetic child providers that return a synthetic value (in the sense of r219330), but no children Also, document this new feature in our www docs llvm-svn: 219337
* Add documentation about the new SBExecutionContext for Python commands ↵Enrico Granata2014-10-011-0/+20
| | | | | | feature. This marks the end of rdar://18142728 llvm-svn: 218835
* Correct typo in tutorial pageEd Maste2014-09-141-1/+1
| | | | llvm-svn: 217733
* Fix some typos:Sylvestre Ledru2014-08-114-4/+4
| | | | | | | | * transfered => transferred * unkown => unknown * sucessfully => successfully llvm-svn: 215367
* Add docs for the "thread.completed-expression" format entry.Jim Ingham2014-07-081-0/+1
| | | | llvm-svn: 212507
* Fix typos.Bruce Mitchener2014-07-012-7/+7
| | | | llvm-svn: 212132
* Terminate italics tag.Bruce Mitchener2014-07-011-1/+1
| | | | llvm-svn: 212131
* Fix a few typos.Bruce Mitchener2014-06-276-9/+9
| | | | llvm-svn: 211851
OpenPOWER on IntegriCloud