diff options
author | Bill Wendling <isanbard@gmail.com> | 2007-09-22 10:13:39 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2007-09-22 10:13:39 +0000 |
commit | 79070057c1d564e51b4e1888cd250a995e803c6f (patch) | |
tree | 8cf35c15a4b93e62b5710d87065630c6859b8258 | |
parent | 068da2781170e793607be74b6af16f4fc122fea5 (diff) | |
download | external_llvm-79070057c1d564e51b4e1888cd250a995e803c6f.zip external_llvm-79070057c1d564e51b4e1888cd250a995e803c6f.tar.gz external_llvm-79070057c1d564e51b4e1888cd250a995e803c6f.tar.bz2 |
Validation fixes
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@42231 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | docs/Stacker.html | 20 |
1 files changed, 15 insertions, 5 deletions
diff --git a/docs/Stacker.html b/docs/Stacker.html index 102571a..c969671 100644 --- a/docs/Stacker.html +++ b/docs/Stacker.html @@ -1296,19 +1296,26 @@ remainder of the story. </div> <!-- ======================================================================= --> <div class="doc_subsection"> <a name="directory">Directory Structure</a></div> + <div class="doc_text"> <p>The source code, test programs, and sample programs can all be found in the LLVM repository named <tt>llvm-stacker</tt> This should be checked out to the <tt>projects</tt> directory so that it will auto-configure. To do that, make sure you have the llvm sources in <tt><i>llvm</i></tt> (see <a href="GettingStarted.html">Getting Started</a>) and then use these -commands:<pre> - svn co http://llvm.org/svn/llvm-project/llvm-top/trunk llvm-top - cd llvm-top - make build MODULE=stacker -</p> +commands:</p> + +<div class="doc_code"> +<pre> +% svn co http://llvm.org/svn/llvm-project/llvm-top/trunk llvm-top +% cd llvm-top +% make build MODULE=stacker +</pre> +</div> + <p>Under the <tt>projects/llvm-stacker</tt> directory you will find the implementation of the Stacker compiler, as follows:</p> + <ul> <li><em>lib</em> - contains most of the source code <ul> @@ -1323,11 +1330,14 @@ implementation of the Stacker compiler, as follows:</p> <li><em>sample</em> - contains the sample programs</li> </ul> </div> + <!-- ======================================================================= --> <div class="doc_subsection"><a name="lexer"></a>The Lexer</div> + <div class="doc_text"> <p>See projects/llvm-stacker/lib/compiler/Lexer.l</p> </div> + <!-- ======================================================================= --> <div class="doc_subsection"><a name="parser"></a>The Parser</div> <div class="doc_text"> |