Linted markdown

Roger 2016-12-19 02:46:13 -05:00
parent 6760f6d5de
commit 3375857614
1 changed files with 3 additions and 4 deletions

@ -4,7 +4,6 @@ macOS Yosemite (10.10) or newer is required to build Dolphin.
You will need to install "Command Line Tools for Xcode". Installing Xcode itself is optional if you have installed the Command Line Tools.
## Checkout and Compile Dolphin
To checkout Dolphin's source:
@ -34,15 +33,15 @@ You can execute `cmake -L` to view the options that Dolphin's CMake environment
If you have any problems compiling, use the verbose option (`make VERBOSE=1`) to give more detail. If you report a problem, at a minimum include the last screen-full of lines.
## Optional: Ninja
[Ninja](https://ninja-build.org/) is a replacement for Make which is a bit faster for a Dolphin-sized project and is worth considering if you intend to rebuild frequently.
[Ninja](https://ninja-build.org/) is a replacement for Make which is a bit faster for a Dolphin-sized project and is worth considering if you intend to rebuild frequently.
After installing it, pass `-G Ninja` to CMake and use 'ninja' instead of 'make' (note that ninja is `-j` by default).
After installing it, pass `-G Ninja` to CMake and use 'ninja' instead of 'make' (note that ninja is `-j` by default).
By default, Clang won't show color diagnostics when not invoked from a TTY, and Ninja buffers compiler output through a pipe to avoid interleaving issues.
To fix this, pass to CMake:
```
-DCMAKE_CXX_FLAGS="-Xclang -fcolor-diagnostics"
```