diff options
Diffstat (limited to 'lldb/www/download.html')
-rwxr-xr-x | lldb/www/download.html | 78 |
1 files changed, 78 insertions, 0 deletions
diff --git a/lldb/www/download.html b/lldb/www/download.html new file mode 100755 index 00000000000..344b4646ddc --- /dev/null +++ b/lldb/www/download.html @@ -0,0 +1,78 @@ +<!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 FAQ</title>
+</head>
+
+<body>
+ <div class="www_title">
+ The <strong>LLDB</strong> Debugger
+ </div>
+
+<div id="container">
+ <div id="content">
+ <div id="left">
+ <div class="urbangreymenu">
+ <h1 class="headerbar">General</h1>
+ <ul>
+ <li><a href="index.html">About</a></li>
+ <li><a href="architecture.html">Architecture</a></li>
+ <li><a href="docs.html">Documentation</a></li>
+ <li><a href="faq.html">FAQ</a></li>
+ <li><a href="features.html">Features</a></li>
+ <li><a href="goals.html">Goals</a></li>
+ <li><a href="status.html">Status</a></li>
+ </ul>
+ </div>
+ <div class="menu">
+ <div class="urbangreymenu">
+ <h1 class="headerbar">Mailing Lists</h1>
+ <ul>
+ <li><a href="http://lists.cs.uiuc.edu/mailman/listinfo/lldb-dev">lldb-dev</a></li>
+ <li><a href="http://lists.cs.uiuc.edu/mailman/listinfo/lldb-commits">lldb-commits</a></li>
+ </ul>
+ </div>
+ </div>
+ <div class="menu">
+ <div class="urbangreymenu">
+ <h1 class="headerbar">Source</h1>
+ <ul>
+ <li><a href="download.html">Download</a></li>
+ <li><a href="http://llvm.org/bugs">Bug Reports</a></li>
+ <li><a href="http://llvm.org/svn/llvm-project/lldb/trunk">Browse SVN</a></li>
+ <li><a href="http://llvm.org/viewvc/llvm-project/lldb/trunk">Browse ViewVC</a></li>
+ </ul>
+ </div>
+ </div>
+ </div>
+ <div id="middle">
+ <div class="post">
+ <h1 class ="postheader">Downloading LLDB sources</h1>
+ <div class="postcontent">
+ <p>Obtaining read only access to the LLDB sources is easy:</p>
+ <ul>
+ <li>svn co http://llvm.org/svn/llvm-project/lldb/trunk lldb</li>
+ </ul>
+ </div>
+ <div class="postfooter"></div>
+ </div>
+ <div class="post">
+ <h1 class ="postheader">Committing LLDB sources</h1>
+ <div class="postcontent">
+ <p>If you wish to contribute to LLDB, you must first get commit access by
+ <a href="http://llvm.org/docs/DeveloperPolicy.html#commitaccess">requesting commit access</a></p>
+ <p>Once you have commit access, you will have a <b>USERNAME</b> and you can checkout the sources:
+ <a href="http://llvm.org/docs/DeveloperPolicy.html#commitaccess">requesting commit access</a></p>
+ <ul>
+ <li>svn co https://USERNAME@llvm.org/svn/llvm-project/lldb/trunk lldb</li>
+ </ul>
+ </div>
+ <div class="postfooter"></div>
+ </div>
+ </div>
+ </div>
+</div>
+</body>
+</html>
\ No newline at end of file |