diff options
author | Chris Lattner <sabre@nondot.org> | 2008-08-06 05:56:52 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2008-08-06 05:56:52 +0000 |
commit | 2a3cea1a6d3be66f9388a24deafe8eb0a794d14e (patch) | |
tree | e37278031179204e6a9628ead8f169b32265e929 /docs/CommandGuide | |
parent | 5af5f463e1b95e2af8d69591d07282427c2dc6a4 (diff) |
remove stacker
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@54398 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/CommandGuide')
-rw-r--r-- | docs/CommandGuide/index.html | 8 | ||||
-rw-r--r-- | docs/CommandGuide/stkrc.pod | 96 |
2 files changed, 2 insertions, 102 deletions
diff --git a/docs/CommandGuide/index.html b/docs/CommandGuide/index.html index a411fea68b..fa1e5e8666 100644 --- a/docs/CommandGuide/index.html +++ b/docs/CommandGuide/index.html @@ -82,16 +82,12 @@ options) arguments to the tool you are interested in.</p> <div class="doc_text"> <ul> -<li><a href="/cmds/llvmgcc.html"><b>llvmgcc</b></a> - +<li><a href="/cmds/llvmgcc.html"><b>llvm-gcc</b></a> - GCC-based C front-end for LLVM -<li><a href="/cmds/llvmgxx.html"><b>llvmg++</b></a> - +<li><a href="/cmds/llvmgxx.html"><b>llvm-g++</b></a> - GCC-based C++ front-end for LLVM</li> -<li><a href="/cmds/stkrc.html"><b>stkrc</b></a> - - front-end compiler for the <a href="../Stacker.html">Stacker</a> - language</li> - </ul> </div> diff --git a/docs/CommandGuide/stkrc.pod b/docs/CommandGuide/stkrc.pod deleted file mode 100644 index 4d8b4c9758..0000000000 --- a/docs/CommandGuide/stkrc.pod +++ /dev/null @@ -1,96 +0,0 @@ -=pod - -=head1 NAME - -stkrc - Stacker Compiler - -=head1 SYNOPSIS - -B<stkrc> [I<options>] [I<filename>] - -=head1 DESCRIPTION - -The B<stkrc> command is the compiler for the Stacker language. Stacker is a -simple stack based, Forth-like language that was written as a demonstration -language for LLVM. For details on the language, please see -L<http://llvm.org/docs/Stacker.html> . The B<stkrc> compiler is fairly -minimal. It compiles to bitcode only and doesn't perform any optimizations. -The output of stkrc (a bitcode file) can be piped through other LLVM tools -for optimization and linking. - -If F<filename> is omitted or is C<->, then B<stkrc> reads its input -from standard input. This is useful for combining the tool into a pipeline. - -If an output file is not specified with the B<-o> option, then -B<llvm-as> sends its output to a file or standard output by following -these rules: - -=over - -=item * - -If the input is standard input, then the output is standard output. - -=item * - -If the input is a file that ends with C<.st>, then the output file is of -the same name, except that the suffix is changed to C<.bc>. - -=item * - -If the input is a file that does not end with the C<.st> suffix, then the -output file has the same name as the input file, except that the C<.bc> -suffix is appended. - -=back - -=head1 OPTIONS - -=over - -=item B<-o> F<filename> - -Specify the output file name. If F<filename> is C<->, then B<llvm-as> -sends its output to standard output. - -=item B<-stats> - -Print statistics acquired during compilation. - -=item B<-time-passes> - -Record the amount of time needed for each pass and print it to standard -error. - -=item B<-f> - -Force the output to be written. Normally, B<stkrc> won't overwrite an existing -bitcode file. This option overrides that behavior. - -=item B<-s> F<stacksize> - -Specify the stack size for the program. The default stack size, 1024, should be -sufficient for most programs. For very large programs, especially those that -recurse a lot, you might want to provide a larger value. Each unit of this -value consumes 8 bytes of memory. - -=item B<-help> - -Print a summary of command line options. - -=back - -=head1 EXIT STATUS - -If B<stkrc> succeeds, it will exit with 0. Otherwise, if an error -occurs, it will exit with a non-zero value, usually 1. - -=head1 SEE ALSO - -L<llvm-as>, L<http://llvm.org/docs/Stacker.html> - -=head1 AUTHORS - -Maintained by the LLVM Team (L<http://llvm.org>). - -=cut |