From bbd797debcb4e2ce101d31cc782ef37987f523f0 Mon Sep 17 00:00:00 2001 From: Thad Guidry Date: Sat, 29 Jun 2013 13:05:41 -0700 Subject: [PATCH] Updated Note getting started developing Rust (markdown) --- Note-getting-started-developing-Rust.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Note-getting-started-developing-Rust.md b/Note-getting-started-developing-Rust.md index d864b6c..6c00f31 100644 --- a/Note-getting-started-developing-Rust.md +++ b/Note-getting-started-developing-Rust.md @@ -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