Daniel Campoverde [alx741] преди 9 години
родител
ревизия
de5e247966
променени са 1 файла, в които са добавени 19 реда и са изтрити 0 реда
  1. 19 0
      pages/common/rustc.md

+ 19 - 0
pages/common/rustc.md

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