Files
tldr/pages/common/rustc.md
Daniel Campoverde [alx741] b5387ef527 rustc: remove test harness option
2016-05-06 11:59:33 -05:00

17 lines
259 B
Markdown

# rustc
> The Rust compiler.
> Processes, compiles and links Rust language source files.
- Compile a single file:
`rustc {{file.rs}}`
- Compile with high optimization:
`rustc -O {{file.rs}}`
- Compile with debugging information:
`rustc -g {{file.rs}}`