b22294bc41
Initialize the CMAKE_{C,CXX}_FLAGS{,_<CONFIG>} cache entries with flags for each ABI as specified by NDK toolchain `setup.mk` files.
9 lines
205 B
CMake
9 lines
205 B
CMake
# <ndk>/build/core/toolchains/x86-clang/setup.mk
|
|
set(_ANDROID_ABI_CLANG_TARGET "i686-none-linux-android")
|
|
|
|
string(APPEND _ANDROID_ABI_INIT_CFLAGS
|
|
" -fPIC"
|
|
)
|
|
|
|
include(Platform/Android/abi-common-Clang)
|