From ef3735a3f81cfe25d7dc11e687513cf2b567cf3b Mon Sep 17 00:00:00 2001 From: Caroline Tice Date: Wed, 15 Jun 2011 16:37:40 +0000 Subject: Add an introduction to the scripting example web page. git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@133061 91177308-0d34-0410-b5e6-96231b3b80d8 --- www/scripting.html | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'www') diff --git a/www/scripting.html b/www/scripting.html index fb7dc573a..dfd858abd 100755 --- a/www/scripting.html +++ b/www/scripting.html @@ -15,6 +15,22 @@
+
+

Introduction

+
+ +

LLDB has been structured from the beginning to be scriptable in two ways + -- a Unix Python session can initiate/run a debug session non-interactively + using LLDB; and within the LLDB debugger tool, Python scripts can be used to + help with many tasks, including inspecting program data, iterating over + containers and determining if a breakpoint should stop execution or continue. + This document will show how to do some of these things by going through an + example, explaining how to use Python scripting to find a bug in a program + that searches for text in a large binary tree.

+ +
+ +

The Test Program and Input

-- cgit v1.2.3