Change OS X to macOS and updated capitalization.

Pringo 2016-10-02 16:59:26 -07:00
parent 9525b4af4b
commit 75af87b073
1 changed files with 6 additions and 6 deletions

@ -1,6 +1,6 @@
## Minimum OS X and Xcode versions
## Minimum macOS and Xcode Versions
OS X Yosemite (10.10) or newer is required to build Dolphin.
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.
@ -37,15 +37,15 @@ If you have any problems compiling, use the verbose option (`make VERBOSE=1`) to
[Ninja](http://martine.github.io/ninja/) 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:
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"
```
## Keeping up to date
## Keeping Up to Date
All you need to do to update to the latest Dolphin revision is the following: