Updated Note getting started developing Rust (markdown)

Thad Guidry
2013-06-29 13:05:41 -07:00
parent 776bc76295
commit bbd797debc
+1 -1
@@ -140,7 +140,7 @@ This will build and test the compiler, standard libraries, and supporting tools.
If you are going to be hacking on the Rust compiler itself then it is recommended that you configure with `--disable-optimize`, since this will greatly reduce up your compilation time.
Note that some make targets are only exercised by `make check-full`. If you want to see what commands a make invocation is running, you can add `VERBOSE=1` to the argument list for make. (Also, if you use make options like `--print-data-base` to see other targets, note that some rules in the database are only generated dynamically.)
*Note:* Some make targets are only exercised by `make check-full`. If you want to see what commands a make invocation is running, you can add `VERBOSE=1` to the argument list for make. (Also, if you use make options like `--print-data-base` to see other targets, note that some rules in the database are only generated dynamically.) See also: [Build system notes](note-build-system)
## Navigating