Use a span to register JACK ports
[openal-soft.git] / XCompile-Android.txt
blob693f0ed96256863a4de2facb3f63f171f8d6aedd
1 # Cross-compiling for Android is handled by the NDK's own provided toolchain,
2 # which as of this writing, should be in
3 # ${ndk_root}/build/cmake/android.toolchain.cmake
5 # Certain older NDK versions may also need to explicitly pick the libc++
6 # runtime. So for example:
7 # cmake .. -DANDROID_STL=c++_shared \
8 #     -DCMAKE_TOOLCHAIN_FILE=${ndk_root}/build/cmake/android.toolchain.cmake
10 # Certain NDK versions may also need to use the lld linker to avoid errors
11 # about missing liblog.so and libOpenSLES.so. That can be done by:
12 # cmake .. -DANDROID_LD=lld \
13 #     -DCMAKE_TOOLCHAIN_FILE=${ndk_root}/build/cmake/android.toolchain.cmake
16 MESSAGE(FATAL_ERROR "Use the toolchain provided by the Android NDK")