[Lldb-commits] [lldb] r141241 - in /lldb/trunk/www: emacs-integration.html lldb-gud-window.png sidebar.incl
Johnny Chen
johnny.chen at apple.com
Wed Oct 5 15:53:08 PDT 2011
Author: johnny
Date: Wed Oct 5 17:53:08 2011
New Revision: 141241
URL: http://llvm.org/viewvc/llvm-project?rev=141241&view=rev
Log:
Add a page describing the emacs integration elisp code based on the Grand Unified Debugger.
An lldb-enhanced gud.el is located under utils/emacs.
Added:
lldb/trunk/www/emacs-integration.html (with props)
lldb/trunk/www/lldb-gud-window.png (with props)
Modified:
lldb/trunk/www/sidebar.incl
Added: lldb/trunk/www/emacs-integration.html
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/www/emacs-integration.html?rev=141241&view=auto
==============================================================================
--- lldb/trunk/www/emacs-integration.html (added)
+++ lldb/trunk/www/emacs-integration.html Wed Oct 5 17:53:08 2011
@@ -0,0 +1,50 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
+<link href="style.css" rel="stylesheet" type="text/css" />
+<title>LLDB Status</title>
+</head>
+
+<body>
+<div class="www_title">
+ The <strong>Emacs</strong> Integration
+</div>
+
+<div id="container">
+<div id="content">
+ <!--#include virtual="sidebar.incl"-->
+
+<div id="middle">
+<div class="post">
+ <h1 class ="postheader">Status</h1>
+<div class="postcontent">
+
+ <p>LLDB supports Emacs integration through customizing the GUD (Grand Unified Debugger) library.
+ Take a look at <a href="http://www.gnu.org/software/libtool/manual/emacs/Debuggers.html#Debuggers">Grand Unified Debugger</a>
+ and the <a href="http://www.emacswiki.org/emacs/GrandUnifiedDebugger">Emacs Wiki Page</a> for more details.</p>
+
+ <p>The lldb-enhanced gud.el is based on the emacs 22.3.1 version from Aquamacs 1.8c distribution.
+ To use it, within emacs, load the gud.el file located under the utils/emacs directory.
+ Type 'M-x lldb' to invoke lldb. The first time you do this, emacs will ask you to supply the command line to invoke lldb.
+ If lldb is not in your PATH, be sure to specify the full path to the lldb executable.</p>
+
+ <p>This is a screen shot of the gud (with lldb) at work on Aquamacs distribution 2.1 by loading gud.el and 'M-x lldb'
+ on the a.out file in the test/functionalities/conditional_break directory:</p>
+
+ <p>
+ <img src="lldb-gud-window.png">
+ </p>
+
+ <p>We welcome any help fleshing out missing pieces and improving the elisp code.</p>
+
+ <p>Last Update: Oct 05, 2011.</p>
+
+</div>
+<div class="postfooter"></div>
+</div>
+</div>
+</div>
+</div>
+</body>
+</html>
Propchange: lldb/trunk/www/emacs-integration.html
------------------------------------------------------------------------------
svn:executable = *
Added: lldb/trunk/www/lldb-gud-window.png
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/www/lldb-gud-window.png?rev=141241&view=auto
==============================================================================
Binary file - no diff available.
Propchange: lldb/trunk/www/lldb-gud-window.png
------------------------------------------------------------------------------
svn:mime-type = application/octet-stream
Modified: lldb/trunk/www/sidebar.incl
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/www/sidebar.incl?rev=141241&r1=141240&r2=141241&view=diff
==============================================================================
--- lldb/trunk/www/sidebar.incl (original)
+++ lldb/trunk/www/sidebar.incl Wed Oct 5 17:53:08 2011
@@ -21,6 +21,7 @@
<li><a href="lldb-gdb.html">LLDB and GDB</a></li>
<li><a href="scripting.html">Python Scripting</a></li>
<li><a href="tutorial.html">Tutorial</a></li>
+ <li><a href="emacs-integration.html">Emacs Integration</a></li>
</ul>
</div>
</div>
More information about the lldb-commits
mailing list