mirror of https://github.com/CrimsonTome/tldr.git
commit
1aa0d2e99f
|
@ -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}}`
|
Loading…
Reference in New Issue