tldr/pages/common/rustc.md

18 lines
314 B
Markdown
Raw Normal View History

2016-05-05 02:51:41 +01:00
# rustc
> The Rust compiler.
2016-05-05 18:01:04 +01:00
> Processes, compiles and links Rust language source files.
> More information: <https://doc.rust-lang.org/rustc>.
2016-05-05 02:51:41 +01:00
- Compile a single file:
`rustc {{file.rs}}`
- Compile with high optimization:
`rustc -O {{file.rs}}`
- Compile with debugging information:
`rustc -g {{file.rs}}`