summaryrefslogtreecommitdiff
path: root/share/cmake-3.17/Modules/Platform/Android/abi-armeabi-GNU.cmake
blob: 33e8b314e153cd23f18a0b9ef34316e186ea127a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# <ndk>/build/core/toolchains/arm-linux-androideabi-4.9/setup.mk
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-GNU)