1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/rustc.md

18 lines
306 B
Markdown
Raw Normal View History

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