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
- Host: GitHub
- URL: https://github.com/system233/boost-android-prebuilt
- Owner: System233
- License: mit
- Created: 2022-04-08T04:02:39.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-04-03T20:36:46.000Z (over 1 year ago)
- Last Synced: 2025-03-22T11:45:29.770Z (7 months ago)
- Topics: android, android-ndk, boost, icu4c, ndk, prebuilt, prebuilt-binaries
- Language: Shell
- Homepage:
- Size: 39.1 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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π.