Lines Matching +full:build +full:- +full:android
1 # Building for Android
3 Assuming the Android Ndk is installed at location `/path/to/toolchain`, building
4 libsndfile for Android (arm-linux-androideabi) should be as simple as:
6 autoreconf -vif
7 export ANDROID_TOOLCHAIN_HOME=/path/to/android/toolchain
8 ./Scripts/android-configure.sh
11 The `Scripts/android-configure.sh` contains four of variables; `ANDROID_NDK_VER`,
15 Since I (erikd), do almost zero Android development, I am happy accept patches
16 for this documentation and script to improve its utility for real Android
19 ---
28 export ANDROID_ABI=arm64-v8a
30 export NDK_ROOT=/path/to/android/ndk
36 cmake -S . -B build -DCMAKE_TOOLCHAIN_FILE=$NDK_ROOT/build/cmake/android.toolchain.cmake -DANDROID…
39 cd into `build` and run make
42 cd build
43 make [-j <number of parallel jobs>]
46 This will build libsndfile for android.