Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichal Strehovský <MichalStrehovsky@users.noreply.github.com>2016-06-10 05:03:54 +0300
committerJan Kotas <jkotas@microsoft.com>2016-06-10 05:03:54 +0300
commitca471c44cb1558eec60592ae9e7f6dc82ddd3bf4 (patch)
treec3b49166901d647ff8589cae9c508e767b85775c /Documentation
parent53276850bc2e7e531908434b2d062fcff3e1d58d (diff)
Update OSX build instructions (#1391)
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/prerequisites-for-building.md3
1 files changed, 2 insertions, 1 deletions
diff --git a/Documentation/prerequisites-for-building.md b/Documentation/prerequisites-for-building.md
index 0eea143cb..aa5399858 100644
--- a/Documentation/prerequisites-for-building.md
+++ b/Documentation/prerequisites-for-building.md
@@ -19,4 +19,5 @@ sudo apt-get install cmake llvm-3.5 clang-3.5 lldb-3.6 lldb-3.6-dev libunwind8 l
# Mac OSX (10.10+)
1. Install [Command Line Tools for XCode 6.3.1](https://developer.apple.com/xcode/download/) or higher.
-2. Install [CMake](https://cmake.org/download/). Launch `/Applications/CMake.app/Contents/MacOS/CMake` GUI. Goto "OSX App Menu -> Tools -> Install For Command Line Use" and follow the steps.
+2. Install [CMake](https://cmake.org/download/). Launch `/Applications/CMake.app/Contents/MacOS/CMake` GUI. Goto "OSX App Menu -> Tools -> Install For Command Line Use" and follow the steps. CMake < 3.6 has [a bug](https://cmake.org/Bug/view.php?id=16064) that can make `--install` fail. Do `sudo mkdir /usr/local/bin` to work around.
+3. Install OpenSSL. Build tools have a dependency on OpenSSL. You can use [Homebrew](http://brew.sh/) to install it: with Homebrew installed, run `brew install openssl` followed by `brew link --force openssl`.