summaryrefslogtreecommitdiffstats
path: root/Modules/Platform/Android/abi-common.cmake
Commit message (Collapse)AuthorAgeFilesLines
* Android: Add support for unified headersBrad King2017-06-121-0/+4
| | | | | | | | The unified headers are preferred as of NDK r15, so use them by default if available and provide an option to use the deprecated headers. Inspired-by: Florent Castelli <florent.castelli@gmail.com> Fixes: #16584
* Android: Link position-independent executables with proper flagsBrad King2016-10-241-0/+4
| | | | | | | | Add `-fPIE -pie` to the default executable link flags when `CMAKE_POSITION_INDEPENDENT_CODE` is enabled. This is required by Android 16 and above for executables to run on the device. Closes: #16382
* Android: Set CMAKE_POSITION_INDEPENDENT_CODE automaticallyBrad King2016-10-241-0/+5
| | | | | | | | | | | If the toolchain file or cache does not set this, enable it automatically based on the Android API version. Versions 16 and above expect position independent code. Use the main `CMAKE_POSITION_INDEPENDENT_CODE` setting in favor of hard-coding `-fpic` or `-fPIC` in the compiler flags for each ABI. This allows CMake to use `-fpie` or `-fPIE` as needed when sources are meant for executables, and `-fpic` or `-fPIC` for other sources.
* Android: Add missing link flags for device executablesBrad King2016-10-211-0/+6
| | | | | | | | | See `${ndk}/build/core/default-build-commands.mk` for link flags the NDK uses for executables. Add them to our default executable link flags. Suppress `nocopyreloc` on `arm64-v8a` because it does not work with some STL types. Closes: #16380
* Android: Populate compiler flags for current ABIBrad King2016-08-231-0/+4
| | | | | Initialize the CMAKE_{C,CXX}_FLAGS{,_<CONFIG>} cache entries with flags for each ABI as specified by NDK toolchain `setup.mk` files.
* Android: Add placeholders for compiler/abi-specific settingsBrad King2016-08-121-0/+0
The Android NDK source repository at https://android.googlesource.com/platform/ndk.git has `<ndk>/build/core/toolchains/*/setup.mk` files that store tables of information for their build system. Add an equivalent file for each compiler/abi combination.