| 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 12 matching lines...) Expand all Loading... |
| 23 | 23 |
| 24 ### Supported target platforms and prerequisites | 24 ### Supported target platforms and prerequisites |
| 25 | 25 |
| 26 You need a C++14 compatible compiler to build libadblockplus. Below there is | 26 You need a C++14 compatible compiler to build libadblockplus. Below there is |
| 27 the list of tested tools. | 27 the list of tested tools. |
| 28 | 28 |
| 29 Win32: | 29 Win32: |
| 30 * At least v141 Visual C++ toolset (available in Microsoft Visual Studio 2017). | 30 * At least v141 Visual C++ toolset (available in Microsoft Visual Studio 2017). |
| 31 | 31 |
| 32 Linux: | 32 Linux: |
| 33 * clang 5.5 | 33 * clang 5.0 |
| 34 We use libc++ instead of the libstdc++ that gcc uses, since by default v8 build |
| 35 with libc++. |
| 34 | 36 |
| 35 Mac: | 37 Mac: |
| 36 * Apple LLVM 9.0.0 for OS X/macOS (Xcode should be installed and its | 38 * Apple LLVM 9.0.0 for OS X/macOS (Xcode should be installed and its |
| 37 developer tools should be "selected"). | 39 developer tools should be "selected"). |
| 38 | 40 |
| 39 Android: | 41 Android: |
| 40 * The host system should be Linux or OS X | 42 * The host system should be Linux or OS X |
| 41 * android-ndk-r16b, here are the links for downloading | 43 * android-ndk-r16b, here are the links for downloading |
| 42 [OS X](https://dl.google.com/android/repository/android-ndk-r16b-darwin-x86_64
.zip), | 44 [OS X](https://dl.google.com/android/repository/android-ndk-r16b-darwin-x86_64
.zip), |
| 43 [Linux 64](https://dl.google.com/android/repository/android-ndk-r16b-linux-x86
_64.zip). | 45 [Linux 64](https://dl.google.com/android/repository/android-ndk-r16b-linux-x86
_64.zip). |
| (...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 299 Linting | 301 Linting |
| 300 ------- | 302 ------- |
| 301 | 303 |
| 302 You can lint the code using [ESLint](http://eslint.org). | 304 You can lint the code using [ESLint](http://eslint.org). |
| 303 | 305 |
| 304 npm run eslint | 306 npm run eslint |
| 305 | 307 |
| 306 In order to set up ESLint and | 308 In order to set up ESLint and |
| 307 [configuration eslint-config-eyeo](https://hg.adblockplus.org/codingtools/file/t
ip/eslint-config-eyeo) you need [Node.js 7 or higher](https://nodejs.org/) and o
nce it is installed please run `npm install` in the repository directory. | 309 [configuration eslint-config-eyeo](https://hg.adblockplus.org/codingtools/file/t
ip/eslint-config-eyeo) you need [Node.js 7 or higher](https://nodejs.org/) and o
nce it is installed please run `npm install` in the repository directory. |
| 308 | 310 |
| LEFT | RIGHT |