summaryrefslogtreecommitdiffstats
path: root/Modules/Platform/Android/abi-mips-Clang.cmake
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2016-06-02 19:11:42 (GMT)
committerBrad King <brad.king@kitware.com>2016-08-23 16:51:58 (GMT)
commitb22294bc41c3ce62e561c7123c3f489a750dcb66 (patch)
treee4d69ae3c1d70330ca09ef9ea80fc0433cc8af2b /Modules/Platform/Android/abi-mips-Clang.cmake
parentb6a3102a9f8da05b50d4f4e96dd9f42ace37aa9b (diff)
downloadCMake-b22294bc41c3ce62e561c7123c3f489a750dcb66.zip
CMake-b22294bc41c3ce62e561c7123c3f489a750dcb66.tar.gz
CMake-b22294bc41c3ce62e561c7123c3f489a750dcb66.tar.bz2
Android: Populate compiler flags for current ABI
Initialize the CMAKE_{C,CXX}_FLAGS{,_<CONFIG>} cache entries with flags for each ABI as specified by NDK toolchain `setup.mk` files.
Diffstat (limited to 'Modules/Platform/Android/abi-mips-Clang.cmake')
-rw-r--r--Modules/Platform/Android/abi-mips-Clang.cmake5
1 files changed, 5 insertions, 0 deletions
diff --git a/Modules/Platform/Android/abi-mips-Clang.cmake b/Modules/Platform/Android/abi-mips-Clang.cmake
index 2991a93..bf6b9fc 100644
--- a/Modules/Platform/Android/abi-mips-Clang.cmake
+++ b/Modules/Platform/Android/abi-mips-Clang.cmake
@@ -1,3 +1,8 @@
# <ndk>/build/core/toolchains/mipsel-linux-android-clang/setup.mk
set(_ANDROID_ABI_CLANG_TARGET "mipsel-none-linux-android")
+
+string(APPEND _ANDROID_ABI_INIT_CFLAGS
+ " -fpic"
+ )
+
include(Platform/Android/abi-common-Clang)