Add automatic exe generation capabilities. Add --bitcode flag to generate only an LLVM bitcode file.

This commit is contained in:
Kelly Wilson 2011-05-16 09:01:36 -06:00 committed by Graydon Hoare
parent 32b8dcb97c
commit 196351aa44
3 changed files with 110 additions and 26 deletions

View file

@ -73,5 +73,5 @@ Control and information flow within the compiler:
- Finally middle/trans.rs is applied to the AST, which performs a
type-directed translation to LLVM-ese. When it's finished synthesizing LLVM
values, rustc asks LLVM to write them out as a bitcode file, on which you
can run the normal LLVM pipeline (opt, llc, as) to get an executable.
values, rustc asks LLVM to write them out as an executable, on which the
normal LLVM pipeline (opt, llc, as) was run.