summaryrefslogtreecommitdiffstats
path: root/Modules/Platform/Android/ndk-stl-gnustl.cmake
Commit message (Collapse)AuthorAgeFilesLines
* Android: Suppress implicit -lstdc++ linker flagBrad King2018-04-031-0/+1
| | | | | | | | | | The chosen STL libraries are already linked explicitly so we shouldn't let the compiler add its implicit `-lstdc++` (the default) when invoking the linker. Fixes: #17863 NDK-Issue: https://github.com/android-ndk/ndk/issues/105 Inspired-by: Tom Hughes <tomtheengineer@gmail.com>
* Android: Select the STL type for NDK buildsBrad King2016-08-231-0/+9
Populate standard include directories and link libraries for the platform. Select the STL corresponding to CMAKE_ANDROID_STL_TYPE and matching the current ABI and toolchain to be used. Refer to the NDK sources/cxx-stl/*/Android.mk files for the needed file locations.