From 3375857614216c359adee7d69caa08955cb4059a Mon Sep 17 00:00:00 2001 From: Roger Date: Mon, 19 Dec 2016 02:46:13 -0500 Subject: [PATCH] Linted markdown --- Building-for-macOS.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/Building-for-macOS.md b/Building-for-macOS.md index 201d3c5..2e44c38 100644 --- a/Building-for-macOS.md +++ b/Building-for-macOS.md @@ -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" ```