blob: 2b1de03f6490f50baf7856cac3551217f11d51c6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
string(APPEND _ANDROID_ABI_INIT_CFLAGS
" -march=armv5te"
)
if(CMAKE_ANDROID_ARM_MODE)
string(APPEND _ANDROID_ABI_INIT_CFLAGS " -marm")
else()
string(APPEND _ANDROID_ABI_INIT_CFLAGS " -mthumb")
endif()
string(APPEND _ANDROID_ABI_INIT_CFLAGS
" -msoft-float"
" -mtune=xscale"
)
include(Platform/Android/abi-common-Clang)
|