An open API service indexing awesome lists of open source software.

https://github.com/system233/boost-android-prebuilt

Boost C++ libraries prebuilt for Android
https://github.com/system233/boost-android-prebuilt

android android-ndk boost icu4c ndk prebuilt prebuilt-binaries

Last synced: about 1 month ago
JSON representation

Boost C++ libraries prebuilt for Android

Awesome Lists containing this project

README

          

# Boost prebuilt for Android

Boost library build scripts for Android, prebuilt binaries are [here](https://github.com/System233/boost-android-prebuilt/releases).

* CXX Standard: `c++20`
* Android ABI: `armeabi-v7a`, `arm64-v8a`, `x86`, `x86_64`
* Android API Level: `19-34` (no 20, 19 requires NDK <= r25)
* Linker: `static`, `shared`
* Repository Dependencies: [Boost](https://github.com/boostorg/boost), [ICU](https://github.com/unicode-org/icu)

## Usage

```shell
export ANDROID_NDK_HOME=
build.sh [armeabi-v7a|arm64-v8a|x86|x86_64] [API-Level] [boost-version-tag] [icu-version-tag] [shared|static]
```

## Version Tag
[boost-version-tag list](https://github.com/boostorg/boost/tags)
[icu-version-tag list](https://github.com/unicode-org/icu/tags)

## Example
```shell
export ANDROID_NDK_HOME=
git clone https://github.com/System233/boost-android-prebuilt.git
cd boost-android-prebuilt
./build.sh arm64-v8a 31
```
The build output will be placed in the `dist` directory.

## Note
On Windows platforms, you need [MSYS2](https://www.msys2.org/) to execute the build scripts.

Please enjoy it😝.