diff --git a/docs/Stacker.html b/docs/Stacker.html index 102571a1072..c969671229a 100644 --- a/docs/Stacker.html +++ b/docs/Stacker.html @@ -1296,19 +1296,26 @@ remainder of the story.
Directory Structure
+

The source code, test programs, and sample programs can all be found in the LLVM repository named llvm-stacker This should be checked out to the projects directory so that it will auto-configure. To do that, make sure you have the llvm sources in llvm (see Getting Started) and then use these -commands:

-    svn co http://llvm.org/svn/llvm-project/llvm-top/trunk llvm-top
-    cd llvm-top
-    make build MODULE=stacker
-

+commands:

+ +
+
+% svn co http://llvm.org/svn/llvm-project/llvm-top/trunk llvm-top
+% cd llvm-top
+% make build MODULE=stacker
+
+
+

Under the projects/llvm-stacker directory you will find the implementation of the Stacker compiler, as follows:

+
+
The Lexer
+

See projects/llvm-stacker/lib/compiler/Lexer.l

+
The Parser