OLD | NEW |
1 Linux | 1 Linux |
2 ===== | 2 ===== |
3 | 3 |
4 Quickstart | 4 Quickstart |
5 ---------- | 5 ---------- |
6 | 6 |
7 <!--?prettify lang=sh?--> | 7 <!--?prettify lang=sh?--> |
8 | 8 |
9 | 9 |
10 # Install depot_tools (this provides ninja and git-cl). | 10 # Install depot_tools (this provides ninja and git-cl). |
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
74 | 74 |
75 Notes | 75 Notes |
76 ----- | 76 ----- |
77 | 77 |
78 1. On 32-bit Linux (when `uname -m` is *not* `x86_64`), you will have to | 78 1. On 32-bit Linux (when `uname -m` is *not* `x86_64`), you will have to |
79 explicitly specify the architecture: | 79 explicitly specify the architecture: |
80 | 80 |
81 <!--?prettify lang=sh?--> | 81 <!--?prettify lang=sh?--> |
82 | 82 |
83 GYP_DEFINES='skia_arch_type=x86' python bin/sync-and-gyp | 83 GYP_DEFINES='skia_arch_type=x86' python bin/sync-and-gyp |
| 84 2. By default, many Linux systems use gcc by default. To use clang you will |
| 85 need to [set the CC and CXX environment variables](/user/tips#gypdefines). |
84 | 86 |
85 Generate build files | 87 Generate build files |
86 -------------------- | 88 -------------------- |
87 | 89 |
88 See [this page for generating build files and run tests](desktop). | 90 See [this page for generating build files and run tests](desktop). |
OLD | NEW |