Left: | ||
Right: |
LEFT | RIGHT |
---|---|
1 libadblockplus | 1 libadblockplus |
2 ============== | 2 ============== |
3 | 3 |
4 A C++ library offering the core functionality of Adblock Plus. | 4 A C++ library offering the core functionality of Adblock Plus. |
5 | 5 |
6 Getting/updating the dependencies | 6 Getting/updating the dependencies |
7 --------------------------------- | 7 --------------------------------- |
8 | 8 |
9 libadblockplus has dependencies that aren't part of this repository. They are | 9 libadblockplus has dependencies that aren't part of this repository. They are |
10 retrieved and updated during the build process, but you can also manually update | 10 retrieved and updated during the build process, but you can also manually update |
(...skipping 11 matching lines...) Expand all Loading... | |
22 Win32: | 22 Win32: |
23 * Microsoft Visual Studio 2010, 2012 | 23 * Microsoft Visual Studio 2010, 2012 |
24 | 24 |
25 Linux: | 25 Linux: |
26 * g++ 5.2 | 26 * g++ 5.2 |
27 | 27 |
28 Mac: | 28 Mac: |
29 * clang 3.6 for OS X | 29 * clang 3.6 for OS X |
30 | 30 |
31 Android: | 31 Android: |
32 * the host system should be linux or OS X | 32 * The host system should be Linux or OS X |
Wladimir Palant
2016/06/20 15:17:51
Nit: it should be "The" and "Linux" (capitalized).
anton
2016/06/20 15:31:23
Acknowledged.
| |
33 * android-ndk-r9, android-ndk-r10c. You can download the latter for [OS X](http: //dl.google.com/android/ndk/android-ndk-r10c-darwin-x86_64.bin), [Linux 32](http ://dl.google.com/android/ndk/android-ndk-r10c-linux-x86.bin), [Linux 64](http:// dl.google.com/android/ndk/android-ndk-r10c-linux-x86_64.bin) | 33 * android-ndk-r9, android-ndk-r10c. You can download the latter for [OS X](http: //dl.google.com/android/ndk/android-ndk-r10c-darwin-x86_64.bin), [Linux 32](http ://dl.google.com/android/ndk/android-ndk-r10c-linux-x86.bin), [Linux 64](http:// dl.google.com/android/ndk/android-ndk-r10c-linux-x86_64.bin). |
Wladimir Palant
2016/06/20 15:17:51
Nit: period at the end of this sentence please.
anton
2016/06/20 15:31:23
Acknowledged.
| |
34 * g++ multilib | 34 * g++ multilib |
35 | 35 |
36 If you have a compilation issue with another compiler please [create an issue](h ttps://issues.adblockplus.org/). | 36 If you have a compilation issue with another compiler please [create an issue](h ttps://issues.adblockplus.org/). |
37 | 37 |
38 ### Unix | 38 ### Unix |
39 | 39 |
40 All you need is Python 2.7 and Make: | 40 All you need is Python 2.7 and Make: |
41 | 41 |
42 make | 42 make |
43 | 43 |
(...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
229 | 229 |
230 ### Unix | 230 ### Unix |
231 | 231 |
232 The shell is automatically built by `make`, you can run it as follows: | 232 The shell is automatically built by `make`, you can run it as follows: |
233 | 233 |
234 build/out/abpshell | 234 build/out/abpshell |
235 | 235 |
236 ### Windows | 236 ### Windows |
237 | 237 |
238 Just run the project *abpshell*. | 238 Just run the project *abpshell*. |
LEFT | RIGHT |