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 * [Xcode](https://developer.apple.com/xcode), 5+. | 8 * [Xcode](https://developer.apple.com/xcode) 5+. |
tfarina
2016/03/03 07:37:23
Should be 3 spaces or just 1 after the "*"?
In a
sdefresne
2016/03/03 11:50:31
I think it is three spaces.
| |
9 * Install | 9 * [depot\_tools](http://dev.chromium.org/developers/how-tos/depottools). |
10 [gclient](http://dev.chromium.org/developers/how-tos/install-depot-tools), | |
11 part of the | |
12 [depot_tools](http://dev.chromium.org/developers/how-tos/depottools) package | |
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. | |
15 * Install Xcode's "Command Line Tools" via Xcode menu -> Preferences -> | 10 * Install Xcode's "Command Line Tools" via Xcode menu -> Preferences -> |
16 Downloads | 11 Downloads |
17 * The OSX 10.10 SDK. Run | 12 * The OSX 10.10 SDK. Run |
18 ```sh | 13 ```sh |
19 ls `xcode-select -p`/Platforms/MacOSX.platform/Developer/SDKs | 14 ls `xcode-select -p`/Platforms/MacOSX.platform/Developer/SDKs |
20 ``` | 15 ``` |
21 to check whether you have it. If you don't have it, you need to get one from | 16 to check whether you have it. If you don't have it, you need to get one from |
22 an install of Xcode 6, and place it in the above directory. | 17 an install of Xcode 6, and place it in the above directory. |
23 | 18 |
24 ## Getting the code | 19 ## Getting the code |
(...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
226 be set in `/etc/sysctl.conf`: | 221 be set in `/etc/sysctl.conf`: |
227 | 222 |
228 echo kern.maxvnodes=$((512*1024)) | sudo tee -a /etc/sysctl.conf | 223 echo kern.maxvnodes=$((512*1024)) | sudo tee -a /etc/sysctl.conf |
229 | 224 |
230 Or edit the file directly. | 225 Or edit the file directly. |
231 | 226 |
232 If your `git --version` reports 2.6 or higher, the following may also improve | 227 If your `git --version` reports 2.6 or higher, the following may also improve |
233 performance of `git status`: | 228 performance of `git status`: |
234 | 229 |
235 git update-index --untracked-cache | 230 git update-index --untracked-cache |
OLD | NEW |