At the moment I am running these parameters:
cmake "$DIR/../../.." -G"Ninja" \
-DCMAKE_BUILD_TYPE="$configuration" \
-DCMAKE_TOOLCHAIN_FILE="$ANDROID_NDK/cmake/toolchain.cmake" \
-DBUILD_TESTING=OFF \
-DANDROID_ABI=armeabi-v7a \
-DANDROID_NATIVE_API_LEVEL=android-15 \
-DANDROID_STL=c++_shared \
-DANDROID_TOOLCHAIN_VERSION=clang3.7 \
-DANDROID_TOOLCHAIN_NAME=arm-linux-androideabi
Ignore the ANDROID_STL parameter (this is the part that should work). At the moment, GNU STL is selected even though I picked clang. However, it should allow me to select LLVM STL.
Is this already supported? If not, can you add support for it?
At the moment I am running these parameters:
Ignore the
ANDROID_STLparameter (this is the part that should work). At the moment, GNU STL is selected even though I picked clang. However, it should allow me to select LLVM STL.Is this already supported? If not, can you add support for it?