OLD | NEW |
1 # Mac Build Instructions | 1 # Mac Build Instructions |
2 | 2 |
3 [TOC] | 3 [TOC] |
4 | 4 |
5 ## Prerequisites | 5 ## Prerequisites |
6 | 6 |
7 * A Mac running 10.9+. | 7 * A Mac running 10.9+. |
8 * https://developer.apple.com/xcode, 5+ | 8 * [Xcode](https://developer.apple.com/xcode), 5+. |
9 * Install | 9 * Install |
10 [gclient](http://dev.chromium.org/developers/how-tos/install-depot-tools), | 10 [gclient](http://dev.chromium.org/developers/how-tos/install-depot-tools), |
11 part of the | 11 part of the |
12 [depot_tools](http://dev.chromium.org/developers/how-tos/depottools) package | 12 [depot_tools](http://dev.chromium.org/developers/how-tos/depottools) package |
13 ([download](http://dev.chromium.org/developers/how-tos/install-depot-tools))
. | 13 ([download](http://dev.chromium.org/developers/how-tos/install-depot-tools))
. |
14 gclient is a wrapper around svn that we use to manage our working copies. | 14 gclient is a wrapper around svn that we use to manage our working copies. |
15 * Install Xcode's "Command Line Tools" via Xcode menu -> Preferences -> | 15 * Install Xcode's "Command Line Tools" via Xcode menu -> Preferences -> |
16 Downloads | 16 Downloads |
17 * The OSX 10.10 SDK. Run | 17 * The OSX 10.10 SDK. Run |
18 ```sh | 18 ```sh |
(...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
227 be set in `/etc/sysctl.conf`: | 227 be set in `/etc/sysctl.conf`: |
228 | 228 |
229 echo kern.maxvnodes=$((512*1024)) | sudo tee -a /etc/sysctl.conf | 229 echo kern.maxvnodes=$((512*1024)) | sudo tee -a /etc/sysctl.conf |
230 | 230 |
231 Or edit the file directly. | 231 Or edit the file directly. |
232 | 232 |
233 If your `git --version` reports 2.6 or higher, the following may also improve | 233 If your `git --version` reports 2.6 or higher, the following may also improve |
234 performance of `git status`: | 234 performance of `git status`: |
235 | 235 |
236 git update-index --untracked-cache | 236 git update-index --untracked-cache |
OLD | NEW |