tldr/pages/common/rustc.md

252 B

rustc

The Rust compiler.

  • Compile a single file:

rustc {{file.rs}}

  • Compile with high optimization:

rustc -O {{file.rs}}

  • Compile with debugging information:

rustc -g {{file.rs}}

  • Build a test harness:

rustc --test {{file.rs}}