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

Merge pull request #870 from alx741/rustc

rustc: add page
This commit is contained in:
Leandro Ostera 2016-05-07 12:48:18 +02:00
commit 1aa0d2e99f

16
pages/common/rustc.md Normal file
View file

@ -0,0 +1,16 @@
# 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}}`